Tomcat+Cocoon : error of pipeline

Hello,
I've installed Tomcat and Cocoon ; Tomcat works fine but when I want to reach Cocoon (http://localhost:8888/cocoon) I've got the following error :
org.apache.cocoon.ResourceNotFoundException: No pipeline matched request: index.htmlIn the Cocoon documentation ( http://cocoon.apache.org/2.2/core-modules/core/2.2/853_1_1.html ) I understood it's due to the sitemap.xmap but I don't know what I can do to fix it... In my cocoon folder I've a welcome.xml file but not any index.html...
My configuration :
Apex 3.2 + Oracle HTTP Server
Tomcat 7.0.8
Cocoon 2.1.11
I 've followed the very good Carl Backstrom's tutorial ( http://apex.oracle.com/i/carl/apex_cocoon/APEX_TOMCAT_COCOON_viewlet_swf.html ) but I just changed the port of Tomcat (to :8888) to avoid the conflict with HTTP Server one (:8080).
Thanks!
Fanny

Hi,
I think your problem does not relate Apex.
It might best seek help from forums that are specially for Tomcat or Cocoon
Regards,
Jari
Edited by: jarola on Feb 18, 2011 1:16 PM

Similar Messages

  • EBiz 11i Integration and Printing with TOMCAT/COCOON

    Hi,
    I have successfully set up a TOMCAT/COCOON printing environment on a Red Hat LINUX server. I am able to produce PDF's from all of my APEX applications with the exception of those defined in our 11i (11.5.0) eBusiness application.
    I use the exact same settings in all instance settings. All run under AIX 5.3 and all can see (ping) the print server. Similarly the print server can see (ping) all of the APEX servers.
    However, trying to produce a PDF from an APEX installation hosted in our eBusiness environments (either from within or outide of the eBusiness application) results in the dreaded HTTP 404 Not Found error.
    Is there something else I need to consider when trying to use a print engine on another server when called from an eBusiness database/application server?
    Any help appreciated.
    Thanks,
    Rob

    Hi David,
    Thanks for the feedback. We are on 10gR2 database, but I re-checked logs to include the error_log_pls file as well as error_log!
    In the error_log_pls I see oracle error ORA-22293. As you may know 11i uses 9iAS by default, and associated Apache. I had made use of the installed Apache in the IAS_ORACLE_HOME. Thanks to your pointer, I have seen suggestions that the issue may be resolved by making use of Apache that comes with 10g. My concern here would be that the seamless integration I have between APEX and 11i (printing aside) will be compromised - the entries I use in defining the function within 11i may need to change.
    I will install Apache from 10g and see what transpires.
    As an aside, I do have a lot of dealings with Oracle Support and I wouldnt necessarily share unqualified endorsement of their capabilities :) . I didnt raise an SR this time because I had figured there was some issue with Cocoon and the 11i server rather than with the Oracle software itself. Maybe I was wrong!
    I will update when I have further information.
    Thanks again.
    Rob

  • 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

  • Tomcat/Cocoon/APEX PDF printing. Another issue

    Hi All,
    I am trying to implement my own custom report layout for the following simple Report query
    select e.DEPTNO, d.DNAME, d.LOC, e.ENAME, e.JOB
    from emp e, dept d
    where e.deptno = d.deptno
    The steps are the following
    1. Create Report Query
    2. Download XML file
    3. Use Stylus Studio to create XSL-FO (XSLT 2.0) based on XML data downloaded in
    previous step.
    4. Go back to Report query and upload XSL-FO file to APEX (layout name 'MyLayout' is also specified).
    Finish Report Query creation
    5. Enter Report Query again, select report layout 'MyLayout' and select Test Report
    The result is a failure with some java cocoon exception:
    org.apache.cocoon.ProcessingException: Unknown request object encountered named template : null
    Cocoon stacktrace[hide]
    Exception in StreamGenerator.generate() context://fop_post/sitemap.xmap - 17:32 <map:serialize type="xml">
    context://fop_post/sitemap.xmap - 13:33 <map:generate type="stream">
    Unable to get transformer handler for cocoon://fop_post/xsl context://fop_post/sitemap.xmap - 38:37 <map:serialize type="fo2pdf">
    context://fop_post/sitemap.xmap - 31:39 <map:transform>
    context://fop_post/sitemap.xmap - 30:38 <map:generate>
    context://sitemap.xmap - 1034:92 <map:mount>
    It seems to me that XSL-FO that I created for this layout is rejected somehow by APEX and not passed to Coccon at all.
    Guys, what am I doing wrong ? I will appreciate any help.
    Regards,
    Vadim

    Hi Mike,
    My standard printing is working nicely. That's the custom reporting that I experience problems with.
    After 8 hours of googling and 4 cups of coffee I figured out where the problem was. When you define XSL-FO file you need to 'escape' every occurence of % sign. For example you cannot define width= "100%" because APEX will pass this unchanged to Tomcat and Tomcat in turn will reject this but still passing NULL template pointer to Cocoon. Taking into consideration very poor logging capabilities one can spend hours trying to fugure out what is hapenning. APEX should be smart enough to escape characters or at least there should be a doco somewhere listing the rules you need to follow whem creating FO stylesheets.
    I must admit that the whole APEX PDF printing using Tomcat/Cocoon (and probably Fop because that's what used by Cocoon behind the scene anyway) is unfortunately a hack. Reporting does not have to be that complex.
    I would be extremely grateful if somebody can tell me what sort of XML tool is best suited to generate XSL-FO files that can be easily understood by APEX/Tomcat/Cocoon.
    Regards,
    Vadim

  • PDF printing--tomcat/cocoon installed, but report server not found------

    As I understood, APEX 3.1 requires either BI/FO tools to enable PDF printing.
    As I do not have BI license, and as I happened to check a very good link on a blog which had a detailed viewlet on apache-cocoon route for PDF print enabling, I downloaded the tomcat, cocoon source files, built the cocoon .WAR, put it in required place as instructed, started tomcot (ran into pronblems because of port conflits, resolved these by configuring different ports for 8005 and 8080 ports).
    Now, when I want to configure the external report server, I am stuck.
    I am not able to locate 'Instances' tab, or 'manage environment settings ' tab in 'manage services'
    I am able to find only following tabs in 'manage services' under HOME.--> Administration ----> Manage services
    1) session state
    2) caching
    3) workspace preferences
    4) applications
    5) workspace
    6) workspace schema reports
    7) Logs
    Can anyone help me to find out where to configure the 'report server' now?
    Thanks,
    suresh.

    Sorry, it was a silly problem:) You have to be logged in as admin to 'see' the 'instances' tab. maybe in all the tomcat/cocoon build/config issues, this simply got off my head!
    now, the problem of print server config is over, I have configured the same. the 'print' link is available now in report region, when I run the report. but when I click the 'print' link, it is taking ages...or rather it is still processing...!!
    Can anyone please point out to me now what is the problem...?
    thanks.

  • External-graphic not shown in PDF with Tomcat / Cocoon / Ubuntu

    Hi,
    this weekend I set up a virtualbox with Ubuntu 8.04 OS; APEX 3.12 @ Oracle 10gXE; Tomcat 6.014; Cocoon 2.1.11; fop_post sitemap file according to Carl Backstrom blogpost ([http://carlback.blogspot.com/2007/03/apex-cocoon-pdf-and-more.html]); to experiment with APEX & PDF printing.
    Tomcat is configured to listen to port 8888; APEX to 8080.
    I have setup APEX according to Carl's blogpost. All is working fine; I can generate PDF reports using the standard templates. I'm new to XSL, but decided to go wild. I decided to include a JPG graphic.
    I followed the example in Scott & Spendolini, Pro Oracle Application Express, page 399. However the image is not shown in the PDF, nor is there an error message produced. What is wrong?
    This is the relevant section of source code I have used:
    &lt;fo:static-content flow-name="region-footer"&gt;
    &lt;fo:block xsl:use-attribute-sets="text footer"&gt;
    &lt;fo:inline xsl:use-attribute-sets="body-font page-number"&gt;
    &lt;fo:external-graphics width="50px" height="50px" src='url("http://www.fiat128.nl/images/fiat128.jpg")'/&gt;
    &lt;fo:page-number/&gt;
    &lt;/fo:inline&gt;
    &lt;/fo:block&gt;
    &lt;fo:block xsl:use-attribute-sets="text text_2 #PAGE_FOOTER_ALIGNMENT#"&gt;
    &lt;fo:inline xsl:use-attribute-sets="page-footer"&gt;#PAGE_FOOTER#&lt;/fo:inline&gt;
    &lt;/fo:block&gt;
    &lt;/fo:static-content&gt;
    all help is appreciated. Is there a problem with Cocoon and Linux?
    many regards,
    Ronald van Dijk
    Edited by: user614694 on Oct 6, 2008 3:09 AM
    Edited by: Ronald van Dijk on Oct 6, 2008 3:10 AM

    Hello Ronald,
    Your code looks fine to me. Although xsl-fo is not very friendly for a slight change...
    This is an example I use during my PDF printing presentation:
    <fo:static-content flow-name="region-header">
    <fo:block xsl:use-attribute-sets="text text_2 text_0 #PAGE_HEADER_ALIGNMENT#">
    <fo:inline xsl:use-attribute-sets="page-header">#PAGE_HEADER#</fo:inline>
    </fo:block>
    <fo:block border="0.5pt solid silver"
    background-image="url('http://o11g1.apex-evangelists.com:7779/i/htmldb/apex_logo.gif')"
    padding="12pt"
    text-align="center">Apex Evangelists
    </fo:block>
    </fo:static-content>
    Does that work for you?
    (change o11g1.apex-evangelists.com:7779 to your hostname:port - and see that you get the image by using the url)
    I've sometimes seen problems displaying certain pictures or specifying the width.
    Regards,
    Dimitri
    http://dgielis.blogspot.com/
    http://www.apex-evangelists.com/
    http://www.apexblogs.info/

  • BI Publisher and TomCat JDBC error

    Hey Folks,
    I have BI Pulbisher up and running in a cluster mode on a Solaris box with a shared folder such as (/u01/app/BI_Publisher/xmlp) as the file path in WEB-INF\xmlp-server-congfig.xml. All my reports and XMLP configuration folders are stored in that directory (ie. Admin, DemoFiles, Reports, Tools etc..). BI Publisher is up and running under the tomcat user id.
    My OBIEE directory is contained in /opt/oracle/app/OracleBI....
    Now when I deployed the xmlpserver.war file and configure my connections, everything was working properly.
    Now I see the following exception being thrown in the tomcat logs. This error msgs are inserted to the logs every second and it will fill up the log file in a matter of hours which makes the BI Publisher go down.
    I have to erase the logs and re-cycle the tomcat server and everything is fine again, but these msgs keep filling up the logs.
    How can i solve this issue of "Cannot load JDBC driver class 'oracle.jdbc.OracleDriver'"?
    Cannot load JDBC driver class 'oracle.jdbc.OracleDriver'
    java.lang.ClassNotFoundException: oracle.jdbc.OracleDriver
         at org.apache.catalina.loader.WebappClassLoader.loadClass(WebappClassLoader.java:1352)
         at org.apache.catalina.loader.WebappClassLoader.loadClass(WebappClassLoader.java:1198)
         at java.lang.ClassLoader.loadClassInternal(ClassLoader.java:319)
         at java.lang.Class.forName0(Native Method)
         at java.lang.Class.forName(Class.java:164)
         at org.apache.commons.dbcp.BasicDataSource.createDataSource(BasicDataSource.java:730)
         at org.apache.commons.dbcp.BasicDataSource.getConnection(BasicDataSource.java:518)
         at org.quartz.utils.PoolingConnectionProvider.getConnection(PoolingConnectionProvider.java:172)
         at org.quartz.utils.DBConnectionManager.getConnection(DBConnectionManager.java:111)
         at org.quartz.impl.jdbcjobstore.JobStoreSupport.getConnection(JobStoreSupport.java:553)
         at org.quartz.impl.jdbcjobstore.JobStoreTX.doCheckin(JobStoreTX.java:1321)
         at org.quartz.impl.jdbcjobstore.JobStoreSupport$ClusterManager.manage(JobStoreSupport.java:2338)
         at org.quartz.impl.jdbcjobstore.JobStoreSupport$ClusterManager.run(JobStoreSupport.java:2369)
    Cannot load JDBC driver class 'oracle.jdbc.OracleDriver'
    java.lang.ClassNotFoundException: oracle.jdbc.OracleDriver
         at org.apache.catalina.loader.WebappClassLoader.loadClass(WebappClassLoader.java:1352)
         at org.apache.catalina.loader.WebappClassLoader.loadClass(WebappClassLoader.java:1198)
         at java.lang.ClassLoader.loadClassInternal(ClassLoader.java:319)
         at java.lang.Class.forName0(Native Method)
         at java.lang.Class.forName(Class.java:164)
         at org.apache.commons.dbcp.BasicDataSource.createDataSource(BasicDataSource.java:730)
         at org.apache.commons.dbcp.BasicDataSource.getConnection(BasicDataSource.java:518)
         at org.quartz.utils.PoolingConnectionProvider.getConnection(PoolingConnectionProvider.java:172)
         at org.quartz.utils.DBConnectionManager.getConnection(DBConnectionManager.java:111)
         at org.quartz.impl.jdbcjobstore.JobStoreSupport.getConnection(JobStoreSupport.java:553)
         at org.quartz.impl.jdbcjobstore.JobStoreTX.doCheckin(JobStoreTX.java:1321)
         at org.quartz.impl.jdbcjobstore.JobStoreSupport$ClusterManager.manage(JobStoreSupport.java:2338)
         at org.quartz.impl.jdbcjobstore.JobStoreSupport$ClusterManager.run(JobStoreSupport.java:2369)
    Cannot load JDBC driver class 'oracle.jdbc.OracleDriver'
    java.lang.ClassNotFoundException: oracle.jdbc.OracleDriver
         at org.apache.catalina.loader.WebappClassLoader.loadClass(WebappClassLoader.java:1352)
         at org.apache.catalina.loader.WebappClassLoader.loadClass(WebappClassLoader.java:1198)
         at java.lang.ClassLoader.loadClassInternal(ClassLoader.java:319)
         at java.lang.Class.forName0(Native Method)
         at java.lang.Class.forName(Class.java:164)
         at org.apache.commons.dbcp.BasicDataSource.createDataSource(BasicDataSource.java:730)
         at org.apache.commons.dbcp.BasicDataSource.getConnection(BasicDataSource.java:518)
         at org.quartz.utils.PoolingConnectionProvider.getConnection(PoolingConnectionProvider.java:172)
         at org.quartz.utils.DBConnectionManager.getConnection(DBConnectionManager.java:111)
         at org.quartz.impl.jdbcjobstore.JobStoreSupport.getConnection(JobStoreSupport.java:553)
         at org.quartz.impl.jdbcjobstore.JobStoreTX.doCheckin(JobStoreTX.java:1321)
         at org.quartz.impl.jdbcjobstore.JobStoreSupport$ClusterManager.manage(JobStoreSupport.java:2338)
         at org.quartz.impl.jdbcjobstore.JobStoreSupport$ClusterManager.run(JobStoreSupport.java:2369)
    Cannot load JDBC driver class 'oracle.jdbc.OracleDriver'
    java.lang.ClassNotFoundException: oracle.jdbc.OracleDriver
         at org.apache.catalina.loader.WebappClassLoader.loadClass(WebappClassLoader.java:1352)
         at org.apache.catalina.loader.WebappClassLoader.loadClass(WebappClassLoader.java:1198)
         at java.lang.ClassLoader.loadClassInternal(ClassLoader.java:319)
         at java.lang.Class.forName0(Native Method)
         at java.lang.Class.forName(Class.java:164)
         at org.apache.commons.dbcp.BasicDataSource.createDataSource(BasicDataSource.java:730)
         at org.apache.commons.dbcp.BasicDataSource.getConnection(BasicDataSource.java:518)
         at org.quartz.utils.PoolingConnectionProvider.getConnection(PoolingConnectionProvider.java:172)
         at org.quartz.utils.DBConnectionManager.getConnection(DBConnectionManager.java:111)
         at org.quartz.impl.jdbcjobstore.JobStoreSupport.getConnection(JobStoreSupport.java:553)
         at org.quartz.impl.jdbcjobstore.JobStoreTX.doCheckin- ClusterManager: Error managing cluster: Failed to obtain DB connection from data source 'myDS': org.apache.commons.dbcp.SQLNestedException: Cannot load JDBC driver class 'oracle.jdbc.OracleDriver', cause: oracle.jdbc.OracleDriver
    org.quartz.JobPersistenceException: Failed to obtain DB connection from data source 'myDS': org.apache.commons.dbcp.SQLNestedException: Cannot load JDBC driver class 'oracle.jdbc.OracleDriver', cause: oracle.jdbc.OracleDriver [See nested exception: org.apache.commons.dbcp.SQLNestedException: Cannot load JDBC driver class 'oracle.jdbc.OracleDriver', cause: oracle.jdbc.OracleDriver]
         at org.quartz.impl.jdbcjobstore.JobStoreSupport.getConnection(JobStoreSupport.java:570)
         at org.quartz.impl.jdbcjobstore.JobStoreTX.doCheckin(JobStoreTX.java:1321)
         at org.quartz.impl.jdbcjobstore.JobStoreSupport$ClusterManager.manage(JobStoreSupport.java:2338)
         at org.quartz.impl.jdbcjobstore.JobStoreSupport$ClusterManager.run(JobStoreSupport.java:2369)

    setpath for the bijdbc.jarfor OBIEE and ojdbc.jar for Oracle DB file .
    that should resolve this library not found error.

  • Tomcat 404 error while running jsp

    Hi all,
    I am trying to deploy a project on our intranet server. But when i give the url
    on the browser it gives the error " HTTP ERROR 404 resourse not available"
    It is not able to find the location o the index page.
    Rest other projects which are already there in webapps are working well.
    But now when i m trying to upload any new jsp or html , it gives the 404 error.
    I have stored the jsp file inside webapps folder. I m using Jakarta tomcat 4.1.18 version.

    as in "webapps/index.jsp"? You don't put files in webapps, you put files in an web app directory, which goes in webapps, e.g. "webapps/myapp/index.jsp"

  • Error in pipeline material creation

    hi,
    we want to create one pipeline material as per our new requirement for showing gas consumption.during material creation with mat type PIPE, it's showing an error:The field Profit Center is defined as a required field; it does not contain
    an entry.
    Procedure
        If the field is the material group or unit of weight, and the field is not ready for input, check whether the material is locked. If it is locked, you cannot extend the Purchasing view or the Sales view. If either of these views needs to be extended, the material must first be unlocked. This can be done only by a user with special authorization.
    thanx,
    sheetal

    Hi
    In your client if Profit center accounting(PCA) is activated ,then you need to maintain the Profit center for the material.
    Option 1: goto OMS2, got details of pipleine material & select the Costing View of the material.
    Now goto MM01 in creation of pipeline material & maintain the profit center in Cotsing 1 View.
    Deactivating the field from mandatory to optional will not serve your purpose as PCA will get affected.
    Thanks & Regards
    Kishore

  • Tomcat throws error on start-up

    When starting Tomcat I get the following error in the Start Tomcat Console:
    SEVERE:Parse Error at Line1 Column: Document Root Element "web-app" must match DOCTYPE root "null"
    What does this error mean and how do I fix (what file must I edit)?
    I am using Tomcat 4.1.3
    luv Ushanta

    Could u clarify something for me please Philip..
    When I installed Tomcat it came with sub directories of the webapps directory; eg: ROOT, examples, etc..Each of these directories contains another folder/directory; WEB-INF. In everyone of these WEB-INF folders exists a web.xml file.
    Must I therefore create a web.xml in every WEB-INF folder that is in a sub-folder of the webapps folder???
    eg: webapps->intranet->WEB-INF ....must there be a web.xml file in this directory?
    If so, what content does it hold....?
    I can still use my web application just fine....but still so, this error irritates me .......
    any assistance from anyone will be appreciated..
    kind regards
    ushnata

  • Tomcat, custom error page, sendError and encoding problems

    Hi All!
    I have the following code in my index.jsp page:
    <%
        if(hasParent && !imageStore.contains(parent))
            response.sendError(404, "Requested image with id=" + parent + " was not found on this server");
            return;
    %>following in the web.xml:
    <error-page>
        <error-code>404</error-code>
        <location>/404.jsp</location>
    </error-page>Both pages (index.jsp and 404.jsp) are windows-1251 encoded:
    <%@page contentType="text/html; charset=windows-1251"%>But I have an issue: all non-latin characters are mangled when 404.jsp displayed as the result of calling response.sendError.
    I mean, if I open myserver.com/404.jsp or myserver.com/non-existing-document-la-la-la, everything is okay. But when I open myserver.com/index.jsp?parent=123 it calls response.sendError - text is mangled.
    What's even more bizarre, Tomcat sends the right encoding in the response headers, but with ? instead non-latin characters:
    HTTP request sent, awaiting response...
    1 HTTP/1.1 404 Requested image with id=1231231 was not found on this server
    2 Content-Type: text/html;charset=windows-1251
    3 Date: Sat, 16 Sep 2006 18:14:27 GMT
    4 Server: Apache-Coyote/1.1
    5 Connection: Keep-Alive
    22:14:27 ERROR 404: Requested image with id=1231231 was not found on this server
    .I am using Apache Tomcat/5.0.28.
    I understand that this issue is not trivial, but I would appreciate any ideas.

    Hi All!
    I have the following code in my index.jsp page:
    <%
        if(hasParent && !imageStore.contains(parent))
            response.sendError(404, "Requested image with id=" + parent + " was not found on this server");
            return;
    %>following in the web.xml:
    <error-page>
        <error-code>404</error-code>
        <location>/404.jsp</location>
    </error-page>Both pages (index.jsp and 404.jsp) are windows-1251 encoded:
    <%@page contentType="text/html; charset=windows-1251"%>But I have an issue: all non-latin characters are mangled when 404.jsp displayed as the result of calling response.sendError.
    I mean, if I open myserver.com/404.jsp or myserver.com/non-existing-document-la-la-la, everything is okay. But when I open myserver.com/index.jsp?parent=123 it calls response.sendError - text is mangled.
    What's even more bizarre, Tomcat sends the right encoding in the response headers, but with ? instead non-latin characters:
    HTTP request sent, awaiting response...
    1 HTTP/1.1 404 Requested image with id=1231231 was not found on this server
    2 Content-Type: text/html;charset=windows-1251
    3 Date: Sat, 16 Sep 2006 18:14:27 GMT
    4 Server: Apache-Coyote/1.1
    5 Connection: Keep-Alive
    22:14:27 ERROR 404: Requested image with id=1231231 was not found on this server
    .I am using Apache Tomcat/5.0.28.
    I understand that this issue is not trivial, but I would appreciate any ideas.

  • Solaris 10  x86 mod_jk for Apache to Tomcat compilation error

    Hi,
    I try to figure it out how to compile the sources of mod_jk under Solaris 10 x86 on v20z server. The configuration goes right. But when I try to use make. This error appears. The version of mod_jk is 1.1.14. Can anybody help with this probleme?
    Here is the result of the make:
    gcc: .libs/mod_jk.o: No such file or directory
    gcc: ../common/.libs/jk_ajp12_worker.o: No such file or directory
    gcc: ../common/.libs/jk_connect.o: No such file or directory
    gcc: ../common/.libs/jk_msg_buff.o: No such file or directory
    gcc: ../common/.libs/jk_util.o: No such file or directory
    gcc: ../common/.libs/jk_ajp13.o: No such file or directory
    gcc: ../common/.libs/jk_pool.o: No such file or directory
    gcc: ../common/.libs/jk_worker.o: No such file or directory
    gcc: ../common/.libs/jk_ajp13_worker.o: No such file or directory
    gcc: ../common/.libs/jk_lb_worker.o: No such file or directory
    gcc: ../common/.libs/jk_sockbuf.o: No such file or directory
    gcc: ../common/.libs/jk_map.o: No such file or directory
    gcc: ../common/.libs/jk_uri_worker_map.o: No such file or directory
    gcc: ../common/.libs/jk_ajp14.o: No such file or directory
    gcc: ../common/.libs/jk_ajp14_worker.o: No such file or directory
    gcc: ../common/.libs/jk_md5.o: No such file or directory
    gcc: ../common/.libs/jk_shm.o: No such file or directory
    gcc: ../common/.libs/jk_ajp_common.o: No such file or directory
    gcc: ../common/.libs/jk_context.o: No such file or directory
    gcc: ../common/.libs/jk_status.o: No such file or directory
    make[1]: *** [mod_jk.la] Error 1
    make[1]: Leaving directory `/install/jakarta-tomcat-connectors-1.2.14.1-src/jk/native/apache-1.3'
    make: *** [all-recursive] Error 1
    Anybody can help???

    You have to run "make clean" and then make.
    Probably the files could not be compiled because of errors in the first place.
    Try to download the source for apache and compile it for the current platform, otherwise you could get wrong settings.

  • Tomcat 404 error until I apply this change to my web.xml mapping

    What is the purpose of the /servlet/ portion of the url-pattern in the servlet mapping element below.
    If I use the first few lines I get a 404 class not found error
    If I include /servlet/ in the url-pattern element then my app works fine ?????
    //Does not work
    <servlet-mapping>
    <servlet-name>login</servlet-name>
    <url-pattern>com.onjava.login</url-pattern>
    </servlet-mapping>
    //works !!
    <servlet-mapping>
    <servlet-name>login</servlet-name>
    <url-pattern>/servlet/com.onjava.login</url-pattern>
    </servlet-mapping>

    If the first mapping doesn't work and the second mapping works then my guess is that neither mapping is working. What may be happening is the invoker servlet may be enabled and that would explain why the /servlet url works.
    The invoker servlet is set up in the conf/web.xml file. This servlet will invoke a particular servlet using the class name and the /servlet url. In newer versions of tomcat the invoker servlet id disabled by default.
    Now the question is why does the servlet mapping not work? What version of tomcat are you running? Can you post the entire web.xml?

  • Installation of Tomcat gives errors

    hi All,
    i m installing Tomcat4.1 version
    while installing it's telling ' JDK Found' and listing the path for the same
    but after installation when i m starting tomcat , i m getting error ' JAVA_HOME" variable not defined correctly
    i have my JDK in C:\Java1.4\j2sdk1.4.0-rc\bin
    my JAVA_HOME IS DEFINED AS C:\Java1.4\j2sdk1.4.0-rc;
    what shall i do?

    hi,
    Through start menu->programs->Tomcat4.1->start tomcat i was geting the same error
    then i asked my friend , got to know that in JAVA_HOME variable . semicolon at the end is not required
    tht's it
    it's working absolutely fine

  • Tomcat startup error

    Can anyone tell me what this means:
    SEVERE: Begin event threw exception
    java.lang.ClassNotFoundException: org.apache.coyote.tomcat4.CoyoteConnector
    at org.apache.catalina.loader.StandardClassLoader.loadClass(StandardClassLoader.java:891)
    at org.apache.catalina.loader.StandardClassLoader.loadClass(StandardClassLoader.java:756)
    at org.apache.commons.digester.ObjectCreateRule.begin(ObjectCreateRule.java:252)
    at org.apache.commons.digester.Rule.begin(Rule.java:200)

    hm, is yout tomcat-path set? what have you done before the error occurs?
    greetings
    dan
    scpj2

Maybe you are looking for

  • Undesired characters appear when my site is published to web

    Hi. I'm working on a blog with iWeb. The text as it appears in iWeb looks great. However, after I've uploaded it via ftp to my server and I view the page with Safari, little diamonds with question marks in them (�) appear in various places - frequent

  • How can i register apple account without credit cards

    how should i do ? can i no need to use credit card to download my apps ? i just wan to get for free

  • How to open .cmx files?

    Hi, I have data of images with .cmx formats.  Do you know how to open them with Adobe Illustrator on Mac? Thanks.

  • Requirement to call Function Module in Workflow

    Hi, I have been assigned to task wherein i have a requierement like this . I have created a workflow with step user decision with 2 options. Now the thing is that when user select one of option i need to call function module and based on result from

  • Classic 160GB suddenly stopped working

    Classic 160 GB worked falwlessly up until last week when it would not turn on (not plugged in, adequate charge, hold button on). Working when I set it on my desk and when I picked it up days later nothing. Will not turn on and will not charge - no si