Problems configuring XSQL with Tomcat

Having a lot of trouble getting this to work with tomcat standalone, apache with tomcat, and even apache with resin. (I have successfully gotten this to work with resin as both web and appserver.)
I have tried to be meticulous in following the directions, but one thing that is throwing me is that I can't find the web.xml file in my xdk distribution (neither in xdk8i nor xdk9i); I've attempted to create the .xsql extension-to-servlet mapping myself in Tomcat's web.xml file, but maybe I got this wrong.
The main symptom is that my xsql pages are basically being returned to me in the browser. Any help would be appreciated.

Bacically you need to create yourself, and here is an example:
<?xml version="1.0" encoding="ISO-8859-1"?>
<!DOCTYPE web-app
PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.2//EN"
"http://java.sun.com/j2ee/dtds/web-app_2.2.dtd">
<web-app>
<servlet>
<servlet-name>
WebCounter
</servlet-name>
<servlet-class>
FAQAnswerServlet
</servlet-class>
</servlet>
<servlet>
<servlet-name>
oraclexsql
</servlet-name>
<servlet-class>
oracle.xml.xsql.XSQLServlet
</servlet-class>
</servlet>
<servlet-mapping>
<servlet-name>
oraclexsql
</servlet-name>
<url-pattern>
*.xsql
</url-pattern>
</servlet-mapping>
</web-app>
null

Similar Messages

  • Mail Server: problem configuring dovecot with postifx and virtualhosts

    Hi all,
    I'm am struggling trying to configure a mail server. I have a dedicated server running archlinux.
    I want to setup a complete mail server, ie: web access (for that I installed roundcube) and being able to retrieve mails on any e-mail client.
    I followed this guide, from the documentation but I've read that courier-imap is a lot more resources hungry than dovecot. As I could not have it working using the documentation, I tought I would use dovecot. The problem is that I am not able to configure it.
    What I already have up and running: web server (nginx) with postfixadmin and roundcubemail, postfix, mysql.
    Now, I want to be able to send and receive mails using dovecot. Could you guide me a little in order to replace courier-imap with dovecot, starting from this documentation? I already have my databases configured, a vmail user, ssl certificates and postifx configured for virtualhosts. Seems that the only thing missing is imap + smts thrue TLS.
    Thanks for any help.
    Last edited by Rolinh (2011-08-17 10:40:19)

    The dovecot configuration files are very well commented with documentation and examples in /etc/dovecot/
    As for TLS and SMTP Auth, this is the relevant part of my main.cf for postfix:
    # TLS Settings
    smtpd_use_tls = yes
    smtpd_tls_key_file = /etc/postfix/wildcard.example.com.key
    smtpd_tls_cert_file = /etc/postfix/wildcard.example.com.crt
    smtpd_tls_CAfile = /etc/postfix/root.crt
    smtpd_tls_received_header = yes
    smtpd_tls_security_level = may
    smtpd_tls_loglevel = 1
    smtpd_tls_session_cache_timeout = 3600s
    smtp_use_tls = yes
    smtp_tls_security_level = may
    smtp_tls_note_starttls_offer = yes
    tls_random_source = dev:/dev/urandom
    # Enable SMTP authentication support
    broken_sasl_auth_clients = yes
    smtp_sasl_auth_enable = no
    smtpd_sasl_auth_enable = yes
    smtpd_sasl_type = dovecot
    smtpd_sasl_local_domain = $mydomain
    smtpd_sasl_path = /srv/postfix/private/auth
    smtpd_sasl_security_options = noanonymous
    smtpd_sasl_authenticated_header = yes
    smtpd_sender_restrictions = permit_sasl_authenticated
    Last edited by fukawi2 (2011-08-17 12:33:15)

  • Problem configuring JTA with Spring in OC4J

    Hi all,
    I'm trying to develop an application that uses Spring with JTA in OC4J standalone.
    I've already read http://www.oracle.com/technology/tech/java/spring/how-to-jta-spring.html and the only difference to my configuration is that I'm not employing annotation-driven transaction definitions.
    All seems to be ok but during the deployment of the application I have the following error:
    07/10/11 17:07:03 WARNING: DeployerRunnable.run Error creating bean with name 'txAdvice': Cannot resolve reference to bean 'txManager' while setting bean property 'transactionManager'; nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'txManager' defined in ServletContext resource [WEB-INF/applicationContext.xml]: Invocation of init method failed; nested exception is org.springframework.transaction.TransactionSystemException: Could not initialize OC4JJtaTransactionManager because OC4J API classes are not available; nested exception is oracle.classloader.util.AnnotatedClassNotFoundException:
    Missing class: oracle.j2ee.transaction.OC4JTransactionManager
    Dependent class: org.springframework.transaction.jta.OC4JJtaTransactionManager
    Loader: global.libraries:1.0
    Code-Source: /home/jkliff/apps/oc4j-10.1.3.2/j2ee/home/applib/spring.jar
    Configuration: <code-source> in /home/jkliff/apps/oc4j-10.1.3.2/j2ee/home/config/server.xml
    This load was initiated at global.libraries:1.0 using the loadClass() method.
    The missing class is available from the following locations:
    1. Code-Source: /home/jkliff/apps/oc4j-10.1.3.2/j2ee/home/lib/oc4j-internal.jar (from <code-source> in META-INF/boot.xml in /home/jkliff/apps/oc4j-10.1.3.2/j2ee/home/oc4j.jar)
    This code-source is available in loader oc4j:10.1.3.
    Any ideas?

    Hi timo,
    I'm using OC4J - StandAlone runnig a application for wikis manageiment that uses servelt and have the system authenticate using JASS. I belive that the problem is about using JASS on OC4J.
    The code that the error shows is that:
    HttpServletRequest req = context.getHttpRequest();
    if( req != null && req.getSession() != null )
    HttpSession session = req.getSession();
    try
    String s;
    if( (s = (String)session.getAttribute( varName )) != null )
    return s;
    if( (s = context.getHttpParameter( varName )) != null )
    return s;
    catch( ClassCastException e ) {}
    for me it seem a problem when the application is trying to get a session, the OC4J block with a problem with authentication.
    I thank your help!

  • Configure reports with tomcat

    hi,
    i wanted to know know how can i integrate apache tomcat 5.0 with oracle reports.
    so that when i run apache as my http server and type a request for report on the URL it interprets and shows me the report.
    what steps should i perfrom,
    kindly elaborate

    Sudesh,
    The Actuate BIRT reports should be used with Actuate's Interactive
    Viewer which is an enhanced viewer.
    Jason
    On 5/13/2011 6:24 AM, Sudesh Bulathsinhala wrote:
    > Hello,
    >
    > We've deployed the reports in tomcat server
    > (apache-tomcat-7.0.12) which contains BIRT report viewer to
    > render the reports. The data reports are running perfectly
    > as expected when invoked from the browser.
    >
    > I recently wanted to try ACTUATE BIRT offering and created
    > few reports with flash charts and it was very powerful,
    > intuitive and very attractive.
    >
    > However, when I deployed the report file (.rptdesign) to
    > tomcat server and tried to preview/run the report,
    > surprisingly I did not get any output for reports with
    > charts.
    >
    > Should we configure different BIRT Report Viewer for reports
    > with Charts in tomcat ? Or perhaps copy flash-plugins to
    > tomcat BIRT Viewer plugins folder ?
    >
    > Any suggestion is highly appreciated.
    >
    > Regards,
    > Sudesh Bulathsinhala
    >

  • Problems configuring JPDK with apache

    I have ias 9i on solaris
    oracle portal configured and running fine
    ojsp and xml parser configured
    I am trying to configure JPDK and use the samples that come with JPDK, but I have problems. I follow the instructions exactly: change the required parameters in jserv.properties, zone.properties and provider.xml. When I restart Apache and try to access the sample (http://server:port/servlet/sample) I get an HTTP 404 File not found error. I've checked and I can run succesfully servlets/JSP's. I would appriciate any help on this!!!!

    Argyris,
    I had the exact same problem with it not being able to locate the oracle jar file. Not matter how I changed the wrapper.classpath it would not work.
    I was able to resolve this by modifying the startJServ.sh file in the /Apache/bin directory to set the CLASSPATH environment variable and then run the startJServ.sh to start both the Apache and then Jserv. This will start Jserv manually so you'll also have to modify the jserv.conf file to set autostart to ON. This worked for me, hopefully it will work for you too...can't figure out why it doesn't work the correct way, I put in a tar but they couldn't find the problem either.

  • Problems configuring FDS with Hibernate

    I'm trying to configure Flex Data Services with Hibernate on
    the back end and I'm running into
    these problems as shown below. Any pointers to solve these
    would be highly appreciated.
    Thanks in anticipation!
    Aubrey M.
    Config: Windows XP
    FDS 2
    Integrated JRun4
    Entries in data-management-config.xml
    <?xml version="1.0" encoding="UTF-8"?>
    <service id="data-service"
    class="flex.data.DataService"
    messageTypes="flex.data.messages.DataMessage">
    <adapters>
    <adapter-definition id="actionscript"
    class="flex.data.adapters.ASObjectAdapter" default="true"/>
    <adapter-definition id="java-adapter"
    class="flex.data.adapters.JavaAdapter"/>
    </adapters>
    <default-channels>
    <channel ref="my-rtmp"/>
    </default-channels>
    <destination id="BohaUser" channels="my-rtmp">
    <adapter ref="java-adapter" />
    <properties>
    <!-- <use-transactions>true</use-transactions>
    -->
    <source>flex.data.assemblers.HibernateAssembler</source>
    <scope>application</scope>
    <metadata>
    <identity property="id"/>
    <many-to-one property="establishment"
    destination="Establishment" lazy="true" />
    <many-to-one property="userRole"
    destination="UserRole" lazy="true" />
    </metadata>
    <network>
    <!-- <session-timeout>20</session-timeout>
    -->
    <paging enabled="true" pageSize="10" />
    <throttle-inbound policy="ERROR" max-frequency="500"/>
    <throttle-outbound policy="REPLACE"
    max-frequency="500"/>
    </network>
    <server>
    <hibernate-entity>boha.db.BohaUser />
    <update-conflict-mode>PROPERTY/>
    <delete-conflict-mode>OBJECT/>
    <fill-configuration>
    <use-query-cache>false/>
    <allow-hql-queries>true/>
    </fill-configuration>
    </server>
    </properties>
    </destination>
    <!-- End of Hibernate destination -->
    <destination id="Establishment" channels="my-rtmp">
    <adapter ref="java-adapter" />
    <properties>
    <source>flex.data.assemblers.HibernateAssembler</source>
    <scope>application</scope>
    <metadata>
    <identity property="id"/>
    <many-to-one property="owner"
    destination="Owner" lazy="true" />
    <many-to-one property="province"
    destination="Province" lazy="true" />
    </metadata>
    <network>
    <paging enabled="true" pageSize="10" />
    <throttle-inbound policy="ERROR" max-frequency="500"/>
    <throttle-outbound policy="REPLACE"
    max-frequency="500"/>
    </network>
    <server>
    <hibernate-entity>boha.db.Establishment</hibernate-entity>
    <update-conflict-mode>PROPERTY</update-conflict-mode>
    <delete-conflict-mode>OBJECT</delete-conflict-mode>
    <fill-configuration>
    <use-query-cache>false</use-query-cache>
    <allow-hql-queries>true</allow-hql-queries>
    </fill-configuration>
    </server>
    </properties>
    </destination>
    <!-- End of Hibernate destination -->
    <destination id="UserRole" channels="my-rtmp">
    <adapter ref="java-adapter" />
    <properties>
    <source>flex.data.assemblers.HibernateAssembler</source>
    <scope>application</scope>
    <metadata>
    <identity property="id"/>
    </metadata>
    <network>
    <paging enabled="true" pageSize="10" />
    <throttle-inbound policy="ERROR" max-frequency="500"/>
    <throttle-outbound policy="REPLACE"
    max-frequency="500"/>
    </network>
    <server>
    <hibernate-entity>boha.db.UserRole</hibernate-entity>
    <update-conflict-mode>PROPERTY</update-conflict-mode>
    <delete-conflict-mode>OBJECT</delete-conflict-mode>
    <fill-configuration>
    <use-query-cache>false</use-query-cache>
    <allow-hql-queries>true</allow-hql-queries>
    </fill-configuration>
    </server>
    </properties>
    </destination>
    <!-- End of Hibernate destination -->
    Output of integrated JRun4 startup
    9/18 12:52:26 info No JDBC data sources have been configured
    for this server (see jrun-resources.xml)
    09/18 12:52:26 info JRun Web Server listening on *:8700
    09/18 12:52:26 info Deploying web application "Flex Default
    Web Application" from:
    file:/C:/aaa-fds/jrun4/servers/default/default-war/
    09/18 12:52:26 user JSPServlet: init
    09/18 12:52:27 info Deploying web application "Boha Online
    Reservations" from: file:/C:/aaa-fds/jrun4/servers/default/flex/
    09/18 12:52:28 user JSPServlet: init
    09/18 12:52:29 user FlexMxmlServlet: init
    09/18 12:52:30 user FlexMxmlServlet: Starting Adobe Flex Web
    Tier Compiler
    09/18 12:52:30 user FlexMxmlServlet: Adobe Flex Web Tier
    Compiler Build: 143451
    09/18 12:52:30 user MessageBrokerServlet: init
    09/18 12:52:38 error Could not pre-load servlet:
    MessageBrokerServlet
    flex.messaging.config.ConfigurationException: Unused tags in
    <properties> found. Please fix them before continuing:
    '/server/delete-conflict-mode' in destination with id:
    'UserRole' from file: data-management-config.xml
    '/server/update-conflict-mode' in destination with id:
    'UserRole' from file: data-management-config.xml
    '/server/fill-configuration' in destination with id:
    'UserRole' from file: data-management-config.xml
    '/server/hibernate-entity' in destination with id:
    'UserRole' from file: data-management-config.xml
    '/server/delete-conflict-mode' in destination with id:
    'Establishment' from file: data-management-config.xml
    '/server/update-conflict-mode' in destination with id:
    'Establishment' from file: data-management-config.xml
    '/server/fill-configuration' in destination with id:
    'Establishment' from file: data-management-config.xml
    '/server/hibernate-entity' in destination with id:
    'Establishment' from file: data-management-config.xml
    '/server/delete-conflict-mode' in destination with id:
    'BohaUser' from file: data-management-config.xml
    '/server/update-conflict-mode' in destination with id:
    'BohaUser' from file: data-management-config.xml
    '/server/fill-configuration' in destination with id:
    'BohaUser' from file: data-management-config.xml
    '/server/hibernate-entity' in destination with id:
    'BohaUser' from file: data-management-config.xml
    at
    flex.messaging.config.MessagingConfiguration.reportUnusedProperties(MessagingConfiguratio n.java:432)
    at
    flex.messaging.MessageBrokerServlet.init(MessageBrokerServlet.java:110)
    at
    jrun.servlet.WebApplicationService.loadServlet(WebApplicationService.java:1200)
    at
    jrun.servlet.WebApplicationService.preloadServlets(WebApplicationService.java:791)
    at
    jrun.servlet.WebApplicationService.postStart(WebApplicationService.java:293)
    at
    jrun.deployment.DeployerService.initModules(DeployerService.java:711)
    at
    jrun.deployment.DeployerService.createWatchedDeployment(DeployerService.java:242)
    at
    jrun.deployment.DeployerService.deploy(DeployerService.java:430)
    at
    jrun.deployment.DeployerService.checkWatchedDirectories(DeployerService.java:179)
    at
    jrun.deployment.DeployerService.run(DeployerService.java:891)
    at
    jrunx.scheduler.SchedulerService.invokeRunnable(SchedulerService.java:230)
    at
    jrunx.scheduler.ThreadPool$ThreadThrottle.invokeRunnable(ThreadPool.java:428)
    at jrunx.scheduler.WorkerThread.run(WorkerThread.java:66)
    09/18 12:52:39 user FlexInternalServlet: init
    09/18 12:52:39 info Deploying web application "Flex Admin Web
    Application" from:
    file:/C:/aaa-fds/jrun4/servers/default/flex-admin/
    09/18 12:52:39 user JSPServlet: init
    09/18 12:52:40 user MessageBrokerServlet: init
    09/18 12:52:40 info Deploying web application "Flex Data
    Services Samples" from:
    file:/C:/aaa-fds/jrun4/servers/default/samples/
    09/18 12:52:41 user JSPServlet: init
    09/18 12:52:43 user FlexMxmlServlet: init
    09/18 12:52:44 user FlexMxmlServlet: Starting Adobe Flex Web
    Tier Compiler
    09/18 12:52:44 user FlexMxmlServlet: Adobe Flex Web Tier
    Compiler Build: 143451
    09/18 12:52:44 user MessageBrokerServlet: init
    09/18 12:52:46 user FlexSwfServlet: init
    09/18 12:52:46 user FlexInternalServlet: init
    09/18 12:52:46 info Deploying enterprise application "JRun
    4.0 Internal J2EE Components" from:
    file:/C:/aaa-fds/jrun4/lib/jrun-comp.ear
    09/18 12:52:46 info Deploying EJB "JRunSQLInvoker" from:
    file:/C:/aaa-fds/jrun4/lib/jrun-comp.ear

    Hi,
    Has this issue been resolved?
    Thanks
    Kumaran Nallore
    FDS QA

  • Problem Configureing Oracle10g with linux fedora core5

    dear forum members,
    when i try to configure oracle 10g in linux fedora core5 with the followning commnad
    # /etc/init.d/oracle-xe configure
    I get the follwoing error message
    Starting Oracle Net Listener...Done
    Configuring Database...grep: /usr/lib/oracle/xe/app/oracle/product/10.2.0/server/config/log/*.log: No such file or directory
    Done
    /bin/chmod: cannot access `/usr/lib/oracle/xe/oradata/XE': No such file or directory
    /bin/chmod: cannot access `/usr/lib/oracle/xe/oradata/XE': No such file or directory
    I also set ORACLE_HOME environment variable before the configure commnad.
    yours truely
    Raja C
    please give me suggestion to configure the oracle10g.

    I was having horrible troubles installing Oracle XE on FC5 until I realized one thing -- I had upgraded packages.
    You have to do the installs just as you want them off the CDs, then install Oracle XE, then upgrade your other packages. I'm not sure which one, but one of the upgrade packages breaks the XE install.
    You would also have trouble with linking ntcontab if you were doing an oracle 10gR2 install with the upgraded set. I haven't figured out why yet but I spent all weekend on it ;)

  • Problems configuring bind with IPv6

    Hi there,
    I am setting up a cache bind server to resolve recursive queries in a ipv6 network only. The problem is my local dns can only return ipv6 address correctly if the domain also returns ipv4 address. For example, the domain www.v6.facebook.com is ipv6 only and returns me nothing, but ipv6.br returns the correct address because it has also a ipv4 address related.
    I used this:
    dig -6 AAAA @::1 www.v6.facebook.com
    dig -6 AAAA @::1 ipv6.br
    Any ideas?? Sorry for my english

    Argyris,
    I had the exact same problem with it not being able to locate the oracle jar file. Not matter how I changed the wrapper.classpath it would not work.
    I was able to resolve this by modifying the startJServ.sh file in the /Apache/bin directory to set the CLASSPATH environment variable and then run the startJServ.sh to start both the Apache and then Jserv. This will start Jserv manually so you'll also have to modify the jserv.conf file to set autostart to ON. This worked for me, hopefully it will work for you too...can't figure out why it doesn't work the correct way, I put in a tar but they couldn't find the problem either.

  • Configuring CGI with Tomcat

    I running Tomcat on a Win2K box without Apache. I have some CGI scripts I'd like to implement on my site, but from everything I've read you seem to need Apache to run these services. Is this true or is there some way to run CGI on just Tomcat? Thanks in advance for your help.
    -Mark

    JSP is CGI. So is PHP, ASP, Perl and almost every other language under the sun (no pun intended). CGI stands for Common Gateway Interface. It's not tied to any language. it's like saying you're writing MOM software instead of saying you're using JMS to write MOM, or saying you're running Linux 7.2.
    You can write CGI programs in any language that can output text.
    CGI is basically a way of programming the HTTP protocol.
    Sorry but this kind of thing really gets to me.
    Oh, installing Apache would be a good start to get Perl CGI programs working no your own machine. ;)

  • Problems with tomcat 4.0.1

    hello,
    i�ve written some servlets using forte 3.0 with tomcat 3.2.
    everything works fine as long as I don�t run the servlets with tomcat 4.0.1.
    i use the request dispatcher / forward method - which dosn�t work reliable.
    it�s a list on which the user has to select one topic. the strange thing about it is that it works when you choose "back" after the error (dispatcher = null) has occured and select a different topic on that list - only the first choice makes en error.
    running on tomcat 3.2 with forte it works fine. but i get the following message in the tomcat output window:
    java.util.MissingResourceException: Can't find resource for bundle java.util.PropertyResourceBundle, key dispatcher.forwardException
    and
    2002-01-13 11:40:05 - Ctx( /lg002234 ): Exception in: R( /lg002234 + /eingaben + null) - javax.servlet.ServletException: cannot find message associated with key : dispatcher.forwardException
    can somebody help?
    is use the dispatcher three times in that post-method - ist that a problem?

    ...sorry
    it�s not a problem with the requestdispatcher,
    problem is, that with tomcat 4.0.1 a parameter
    sometimes gets lost - but not with tomcat 3.2
    critical code is:
    String tierartAuswahl = request.getParameter("tierartAuswahl");
    is that a known bug of tomcat 4.0.1??

  • XSQL with Weblogic 5.1 SP 6

    Hi there,
    I'm trying to use the XSQL framework with our current system.
    My system configuration is :
    -Windows NT 4.0
    -Weblogic 5.1 SP 6
    -Oracle 8.1.5
    -Xalan version=2.0.1
    -Xerces version=1_3_1 (Support SAX2)
    In particular, I was wondering how to set up the CLASSPATH order of specifing Xerces and SAX2(as part of the XSQL libraries)
    Thanks in advance,
    dan stepanov

    Hi there,
    I've managed to configure XSQL with Weblogic 5.1 SP6 and to run the demos from the Oracle site.
    My system configuration is :
    -Windows NT 4.0
    -Weblogic 5.1 SP 6
    -Oracle 8.1.7
    -Xalan version=2.0.1
    -Xerces version=1_3_1 (Support SAX2)
    CLASSPATH="${oradriver.lib}:${servlets.lib}:${jaxp.lib}:${xerces.lib}:${xalan.lib}:${xsql.lib}:${weblogic.home.dir}/lib/weblogic510sp${weblogic.sp.version}boot.jar:${weblogic.home. dir}/classes/boot"
    WEBLOGIC_CLASSPATH="${jaxp.lib}:${xerces.lib}:${xalan.lib}:${xsql.lib}:${weblogic.lib}:${jdom.lib}:${oreilly.lib}:${jdriver.lib}:${build.classes.dir}"
    Now when trying to integrate my XSQL framework in the big picture of the webapp - I'm getting errors.
    the error is:
    =============================================
    <WebAppServletContext-ads> looking for taglib uri
    /tlds/taglib.tld as resource /WEB-INF/tlds/taglib.tld
    in Web Application root:
    Sat Jun 16 14:30:37 PDT 2001:<E>
    <WebAppServletContext-ads> Servlet failed with
    Exception
    java.lang.NoSuchMethodError:
    javax.servlet.jsp.tagext.TagAttributeInfo: method
    <init>(Ljava/lang/String;ZZLjava/lang/String;)V not
    found
    at
    weblogic.servlet.jsp.MyAttInfo.<init>(StandardTagLib.java:34)
    at
    weblogic.servlet.jsp.StandardTagLib.processTag(StandardTagLib.java:280)
    =========================================
    If I remove from the classpath the servlets.lib(which contains servlets.jar) I'm able to access my webapp again but I cannot process the .xsql extensions.
    -the error from Weblogic appserver is:
    cannot find XSQLServletPageProcessor
    My question is that somebody has any ideea of what other type of servlet lib will be needed or if something else in the configuration files has to be modified?
    Thanks in advance,
    dan stepanov
    null

  • Problems with Tomcat & Eclipse on MacOSX

    Hi everybody. I have a problem with Tomcat and Eclipse. I must make an application with JSF for my dissertation and i even become a new Mac user so i have some problems. I have installed Eclipse 3,3 Europe on Mac OSX 10,4, also I have installed Tomcat 5,5 setting up environment variable and users of Tomcat. Well, when I try to connect them creating a new server in Eclipse and select Tomcat as server and relative folder of origin, the problems begin. When I try to run on server a JSF project(naturally I have imported all the necessary libraries) it give this error to me: Could not load the Tomcat incomplete serveur configuration at /Servers/Tomcat v5.5 serveur at localhost-config.The configurator mau be corrupt or. Reason: Could not load the Tomcat incomplete serveur configuration at /Servers/Tomcat v5.5 serveur at localhost-config.The configurator mau be corrupt or incomplete. On what it can depend? It is possible that is a JRE problem? I do not find the folder jre on my file system(are novice with the mac). Thanks to all.

    This seems like a question that would be better put to an Eclipse forum.

  • Eclipse with Tomcat 6 Problem

    Hello,
    When I try to start Tomcat 6 in Eclipse, I get the following error message:
    Publishing failed
    Could not load the Tomcat server configuration at \Servers\Tomcat v6.0 Server at localhost-config. The configuration may be corrupt or incomplete.
    Resource is out of sync with the file system: '/Servers/Tomcat v6.0 Server at localhost-config/web.xml'.
    In the beginning I thought the problem might be caused by me inserting a few changes to the web.xml global file and maybe corrupting it in the process. However, I restored the original file and the problem still persists. I have no problem starting Tomcat using the standard start-up script, which indicates web.xml is actually valid, it fails just when starting from Eclipse.
    Does anyone have an idea what the problem is?
    Thanks.

    Bug 228039 from Eclipse MIGHT help, but I'm not sure.
    https://bugs.eclipse.org/bugs/show_bug.cgi?id=228039
    It says to manually refresh the file in Eclipse explorer.
    Bug 107386 from Eclipse MIGHT also help.
    https://bugs.eclipse.org/bugs/show_bug.cgi?id=107386
    No workaround yet.

  • Problems configuring HP Laserjet M1213nf MFP with Mac via AirPrint

    Hello,
    I have a HP Laserjet M1213nf MFP printer, connected to a Dlink DSL-2730U ADSL router. I am having problems configuring the printer with my Macbook running OSX Yosemite. I can see the printers name in nearby printers but when I try to add the printer, the mac gives me an error saying, "unable to communicate with the printer at this time". The network settings on the printer are configure for iPv4 and iPv6 addresses. 
    Previously, I had the ADSL DSL-2750U model router, and the printer was connected fine. I did not face any issues then. I have been facing problems since I changed my router so the problem should be in the router. I have the IP for the printer reserved in the DHCP reservation list on the router settings using the mac address of the printer.
    Can someone please help me out here? Is there something I am probably missing.
    Rgds
    ~n~

    I talked to the DLink Support. They asked me to disable an option called "MultiAP Isolation" and Voila, the printer is working fine. I can add it to all my devices on the wireless network. I looked up google. Apparently, this isolation feature present in some routers, prevent wifi clients to interact with other devices connected to the wired network and also with each other. Thats why only my desktop which was also connected wired was only able to access the printer and not the laptops connected wirelessly. 
    Problem solved. Thanks for all your help on this one.
    Cheers!

  • PDF with Tomcat/Cocoon Problem !!!

    Hi,
    I am having problem with Tomcat/Cocoon combination for APEX PDF printing which I installed following Carl Backstrom instructions.
    When a report is a region report it all works fine, but when I create a report based on a query from the reports section in Shared Components choosing report layout 'Use Generic Report Layout' I get the following error.
    javax.xml.transform.TransformerException: attribute-set named #TEXT_ALIGN# does not exist
    cocoon://fop_post/xsl - 148:58
    Cocoon stacktrace[hide]
    attribute-set named #TEXT_ALIGN# does not exist
    cocoon://fop_post/xsl - 148:58
    I will appreciate any feedback. I saw threads related to the same issue on this forum but they ended up covering something irrelevant.
    Regards,
    Vadim

    Vadim,
    Report queries and report region use the same generic report layout. However the processing is handled by different engines. The underlying technical problem with your case is that the substitution string #TEXT_ALIGN# is not substituted in all cases for report queries. This usually does not cause any problems, but appears not to work when using Cocoon.
    I'll see that we can this resolved with the next version of APEX, however when working with report layouts, you would typically use your own RTF or XSL-FO stylesheets, where this problem would not occur. The option to use the generic report layout is only included so the data can be tested independently from the layout and is not really intended to be used as the actual layout at runtime.
    The generic report layout function is mainly designed to be used for report regions.
    Regards,
    Marc

Maybe you are looking for

  • Yellowy hue

    I got a replacement screen for my rMBP yesterday (it had a mura) and the new one has a yellowy hue - but only half of the screen. Some people I have asked can't see it and I don't know if I'd be able to get a replacement because I know it probably is

  • SVN version for JD 11.1.1.4

    Hi ALl I'm using jd 11.1.1.4 I want to know what is the supported SVN version for jd 11.1.1.4 and does SVN 1.6 support for jd 11.1.1.4 Tx

  • Best buy PC app fails to install.

    The install goes until almost the end, then ClickOnce fails, then the app doesnt load.  I've done the /AppData/apps delete fix attempt.  I've checked the event logs and later found a detailed stack trace of the issue: PLATFORM VERSION INFO Windows :

  • Q about Flex and Flash video

    Hi - Looking for advice from more experienced Flex users here. I am completely new to Flex, and am curious if its the right tool for something I'd like to accomplish. Any feedback is welcome. The goal is to create a video template page and we want th

  • Does the Spectral Measurement Toolkit Support the 5644 VST?

    I'm currently in process of migrating from a PXI-5660 to PXIe-5644 in .NET.  The current measurement process is as follows: ConfigureSpectrumForRFSA CalculateCorrectionForRFSA NiScope.Read niSMT.ZoomFFT niSMT.AveragedPowerSpectrum niSMT.ApplyCorrecti