You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@tomcat.apache.org by Richard Lewis <ri...@fastmail.co.uk> on 2004/11/24 12:21:23 UTC

Servlet class not found

Hello,

This is probably quite a simple question but I couldn't find an answer
in the archives:

I'm writing a servlet to perform a little search on my website. The
servlet is compiled and is in a directory structure like this:

$CATALINA_HOME/webapps/StudioSearch
   +-- index.html   (provides a form to do a test search)
   +-- WEB-INF/
        +-- web.xml   (see below)
        +-- classes/
             +-- uk/
                  +-- ac/
                       +-- uea/
                            +-- studios/
                                 +-- StudioSearch.class
                                 +-- StudioSearch.java

web.xml looks like this:
<web-app>
    <servlet>
        <servlet-name>StudioSearch</servlet-name>
        <servlet-class>uk.ac.uea.studios.StudioSearch</servlet-class>
    </servlet>
    <servlet-mapping>
        <servlet-name>StudioSearch</servlet-name>
        <url-pattern>/studio-search</url-pattern>
    </servlet-mapping>
</web-app>

When I visit: http://localhost:8080/StudioSearch/ I get the index page
as expected. This page has a <form> element where the action is
"studio-search" but when I submit this form I get the following error:

javax.servlet.ServletException: Error allocating a servlet instance
......
java.lang.NoClassDefFoundError: uk/ac/uea/studios/StudioSearch (wrong
name: StudioSearch)
	at java.lang.ClassLoader.defineClass0(Native Method)
	at java.lang.ClassLoader.defineClass(ClassLoader.java:539)

I've checked all the spelling and case and that I'm not using '.class'
(the StudioSearch.java file isn't confusing it, is it?) but I can't seem
to make it work. (I know the servlet class itself works because I've
executed it Tomcat's ROOT webapp.)

Any ideas?

Thanks,
Richard
-- 
  Richard Lewis
  richardlewis@fastmail.co.uk


---------------------------------------------------------------------
To unsubscribe, e-mail: tomcat-user-unsubscribe@jakarta.apache.org
For additional commands, e-mail: tomcat-user-help@jakarta.apache.org


Re: Servlet class not found

Posted by Quinton Delpeche <qu...@vippayroll.co.za>.
On Wednesday 24 November 2004 13:21, Richard Lewis wrote:
> Hello,

Hi,

> This is probably quite a simple question but I couldn't find an answer
> in the archives:

Did you compile the class file and declare its package?

package za.co.vippayroll.intsys.training.database;

This line should appear above your import statements?

> Any ideas?
>
> Thanks,
> Richard
Q
-- 
Quinton Delpeche
Internal Systems Developer
Softline VIP

Telephone: +27 12 420 7000
Direct:    +27 12 420 7007
Facsimile: +27 12 420 7344

http://www.vippayroll.co.za/

	FIGHTING WORDS

Say my love is easy had,
	Say I'm bitten raw with pride,
Say I am too often sad --
	Still behold me at your side.

Say I'm neither brave nor young,
	Say I woo and coddle care,
Say the devil touched my tongue --
	Still you have my heart to wear.

But say my verses do not scan,
	And I get me another man!
		-- Dorothy Parker

RE: Servlet class not found

Posted by Richard Lewis <ri...@fastmail.co.uk>.
On Wed, 24 Nov 2004 17:05:23 +0530, "Joseph Samuel" <jo...@atinav.com>
said:
> 
> It seems that the package is not properly declared in it. Check it.
> 
> 
Oh, yes. Of course, its now in a proper directory structure.

Thanks very much,
Richard
-- 
  Richard Lewis
  richardlewis@fastmail.co.uk


---------------------------------------------------------------------
To unsubscribe, e-mail: tomcat-user-unsubscribe@jakarta.apache.org
For additional commands, e-mail: tomcat-user-help@jakarta.apache.org


RE: Servlet class not found

Posted by Joseph Samuel <jo...@atinav.com>.
It seems that the package is not properly declared in it. Check it.


-----Original Message-----
From: Richard Lewis [mailto:richardlewis@fastmail.co.uk]
Sent: Wednesday, November 24, 2004 4:51 PM
To: tomcat-user@jakarta.apache.org
Subject: Servlet class not found


Hello,

This is probably quite a simple question but I couldn't find an answer
in the archives:

I'm writing a servlet to perform a little search on my website. The
servlet is compiled and is in a directory structure like this:

$CATALINA_HOME/webapps/StudioSearch
   +-- index.html   (provides a form to do a test search)
   +-- WEB-INF/
        +-- web.xml   (see below)
        +-- classes/
             +-- uk/
                  +-- ac/
                       +-- uea/
                            +-- studios/
                                 +-- StudioSearch.class
                                 +-- StudioSearch.java

web.xml looks like this:
<web-app>
    <servlet>
        <servlet-name>StudioSearch</servlet-name>
        <servlet-class>uk.ac.uea.studios.StudioSearch</servlet-class>
    </servlet>
    <servlet-mapping>
        <servlet-name>StudioSearch</servlet-name>
        <url-pattern>/studio-search</url-pattern>
    </servlet-mapping>
</web-app>

When I visit: http://localhost:8080/StudioSearch/ I get the index page
as expected. This page has a <form> element where the action is
"studio-search" but when I submit this form I get the following error:

javax.servlet.ServletException: Error allocating a servlet instance
......
java.lang.NoClassDefFoundError: uk/ac/uea/studios/StudioSearch (wrong
name: StudioSearch)
	at java.lang.ClassLoader.defineClass0(Native Method)
	at java.lang.ClassLoader.defineClass(ClassLoader.java:539)

I've checked all the spelling and case and that I'm not using '.class'
(the StudioSearch.java file isn't confusing it, is it?) but I can't seem
to make it work. (I know the servlet class itself works because I've
executed it Tomcat's ROOT webapp.)

Any ideas?

Thanks,
Richard
-- 
  Richard Lewis
  richardlewis@fastmail.co.uk


---------------------------------------------------------------------
To unsubscribe, e-mail: tomcat-user-unsubscribe@jakarta.apache.org
For additional commands, e-mail: tomcat-user-help@jakarta.apache.org

---------------------------------------------------------------------
To unsubscribe, e-mail: tomcat-user-unsubscribe@jakarta.apache.org
For additional commands, e-mail: tomcat-user-help@jakarta.apache.org


RE: org.apache.commons.digester.Digester error

Posted by Ben Souther <bs...@fwdco.com>.
> This is the default webapp from CATALINA_HOME/conf
> 
> Check your app's web.xml file
> CATALINA_HOME/webapps/yourAppName/WEB-INF/web.xml

default web.xml, I mean


---------------------------------------------------------------------
To unsubscribe, e-mail: tomcat-user-unsubscribe@jakarta.apache.org
For additional commands, e-mail: tomcat-user-help@jakarta.apache.org


RE: org.apache.commons.digester.Digester error

Posted by Ben Souther <bs...@fwdco.com>.
On Wed, 2004-11-24 at 22:04, akki wrote:
> hi...
> 
> thanks for ur reply....
> 
> i m not finding any malformation in web.xml
> 
> this is my web.xml file..

This is the default webapp from CATALINA_HOME/conf

Check your app's web.xml file
CATALINA_HOME/webapps/yourAppName/WEB-INF/web.xml



---------------------------------------------------------------------
To unsubscribe, e-mail: tomcat-user-unsubscribe@jakarta.apache.org
For additional commands, e-mail: tomcat-user-help@jakarta.apache.org


RE: org.apache.commons.digester.Digester error

Posted by akki <ak...@bhelhwr.co.in>.
hi...

thanks for ur reply....

i m not finding any malformation in web.xml

this is my web.xml file..
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
>>>>
<?xml version="1.0" encoding="ISO-8859-1"?>
<!DOCTYPE web-app
     PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN"
    "http://java.sun.com/dtd/web-app_2_3.dtd">
<web-app>

  <!-- ======================== Introduction
============================== -->
  <!-- This document defines default values for *all* web
cations      -->
  <!-- loaded into this instance of Tomcat.  As each application
   -->
  <!-- deployed, this file is processed, followed by
    -->
  <!-- "/WEB-INF/web.xml" deployment descriptor from your
    -->
  <!--
              -->
  <!--                                                                      
-->
  <!-- WARNING:  Do not configure application-specific resources
      -->
  <!-- They should go in the "/WEB-INF/web.xml" file in your
plication.   -->


  <!-- ================== Built In Servlet Definitions
==================== -->


  <!-- The default servlet for all web applications, that serves
ic     -->
  <!-- resources.  It processes all requests that are not mapped to
her   -->
  <!-- servlets with servlet mappings (defined either here or in your
n   -->
  <!-- web.xml file.  This servlet supports the following
tialization    -->
  <!-- parameters (default values are in square
           -->
  <!--                                                                      
-->
  <!--   debug               Debugging detail level for messages
ed     -->
  <!--                       by this servlet.
     -->
  <!--                                                                      
-->
  <!--   input               Input buffer size (in bytes) when
ng      -->
  <!--                       resources to be served.
        -->
  <!--                                                                      
-->
  <!--   listings            Should directory listings be produced if
there -->
  <!--                       is no welcome file in this directory?
[true]  -->
  <!--                                                                      
-->
  <!--   output              Output buffer size (in bytes) when
ing     -->
  <!--                       resources to be served.
        -->
  <!--                                                                      
-->
  <!--   readonly            Is this context "read only", so
     -->
  <!--                       commands like PUT and DELETE
    -->
  <!--                       rejected?
        -->

    <servlet>
        <servlet-name>default</servlet-name>
        <servlet-class>
          org.apache.catalina.servlets.DefaultServlet
        </servlet-class>
        <init-param>
            <param-name>debug</param-name>
            <param-value>0</param-value>
        </init-param>
        <init-param>
            <param-name>listings</param-name>
            <param-value>true</param-value>
        </init-param>
        <load-on-startup>1</load-on-startup>
    </servlet>


  <!-- The "invoker" servlet, which executes anonymous servlet
es      -->
  <!-- that have not been defined in a web.xml file.  Traditionally,
is   -->
  <!-- servlet is mapped to URL pattern "/servlet/*", but you can map
   -->
  <!-- to other patterns as well.  The extra path info portion of such
  -->
  <!-- request must be the fully qualified class name of a Java class
hat  -->
  <!-- implements Servlet (or extends HttpServlet), or the servlet
     -->
  <!-- of an existing servlet definition.     This servlet supports
    -->
  <!-- following initialization parameters (default values are in
are    -->
  <!--
           -->
  <!--                                                                      
-->
  <!--   debug               Debugging detail level for messages
ed     -->
  <!--                       by this servlet.
     -->

    <servlet>
        <servlet-name>invoker</servlet-name>
        <servlet-class>
          org.apache.catalina.servlets.InvokerServlet
        </servlet-class>
        <init-param>
            <param-name>debug</param-name>
            <param-value>0</param-value>
        </init-param>
        <load-on-startup>2</load-on-startup>
    </servlet>


  <!-- The JSP page compiler and execution servlet, which is the
echanism  -->
  <!-- used by Tomcat to support JSP pages.  Traditionally, this
vlet    -->
  <!-- is mapped to URL patterh "*.jsp".  This servlet supports
    -->
  <!-- following initialization parameters (default values are in
are    -->
  <!--
           -->
  <!--                                                                      
-->
  <!--   checkInterval       If development is false and relaoding is
true, -->
  <!--                       background compiles are enabled.
checkInterval -->
  <!--                       is the time in seconds between checks to
e   -->
  <!--                       if a JSP page needs to be recompiled.
0]    -->
  <!--                                                                      
-->
  <!--   compiler            Which compiler Ant should use to compile
P   -->
  <!--                       pages.  See the Ant documenation for
     -->
  <!--                       information.
        -->
  <!--                                                                      
-->
  <!--   classdebuginfo      Should the class file be compiled
     -->
  <!--                       debugging information?
        -->
  <!--                                                                      
-->
  <!--   classpath           What class path should I use while
mpiling   -->
  <!--                       generated servlets?  [Created
ically      -->
  <!--                       based on the current web
on]          -->
  <!--                                                                      
-->
  <!--   development         Is Jasper used in development mode (will
check -->
  <!--                       for JSP modification on every access)?
 [true] -->
  <!--                                                                      
-->
  <!--   enablePooling       Determines whether tag handler pooling
   -->
  <!--                       enabled
        -->
  <!--                                                                      
-->
  <!--   ieClassId           The class-id value to be sent to
net      -->
  <!--                       Explorer when using <jsp:plugin>
      -->
  <!--
                    [clsid:8AD9C840-044E-11D1-B3E9-00805F499D93]   -->
  <!--                                                                      
-->
  <!--   javaEncoding        Java file encoding to use for generating
ava  -->
  <!--                       source files.
       -->
  <!--                                                                      
-->
  <!--   keepgenerated       Should we keep the generated Java source
ode  -->
  <!--                       for each page instead of deleting it?
rue]   -->
  <!--                                                                      
-->
  <!--   largefile           Should we store the static content of
    -->
  <!--                       pages in external data files, to reduce
    -->
  <!--                       size of the generated servlets?
e]       -->
  <!--                                                                      
-->
  <!--   logVerbosityLevel   The level of detailed messages to be
roduced  -->
  <!--                       by this servlet.  Increasing levels cause
he  -->
  <!--                       generation of more messages.  Valid values
are -->
  <!--                       FATAL, ERROR, WARNING, INFORMATION, and
DEBUG. -->
  <!--
                                -->
  <!--                                                                      
-->
  <!--   mappedfile          Should we generate static content with
    -->
  <!--                       print statement per input line, to
     -->
  <!--                       debugging?
         -->
  <!--                                                                      
-->
  <!--   reloading           Should Jasper check for modified JSPs?
 [true] -->
  <!--                                                                      
-->
  <!--   scratchdir          What scratch directory should we use
     -->
  <!--                       compiling JSP pages?  [default work
irectory  -->
  <!--                       for the current web
             -->
  <!--                                                                      
-->
  <!-- If you wish to use Jikes to compile JSP
       -->
  <!--   Set the init parameter "compiler" to "jikes".
        -->
  <!--   the property "-Dbuild.compiler.emacs=true" when starting
cat    -->
  <!--   by adding the above to your CATALINA_OPTS environment
iable.    -->
  <!--   If you get an error reporting that jikes can't use UTF8
ncoding,  -->
  <!--   try setting the init parameter "javaEncoding" to
-8859-1".     -->

    <servlet>
        <servlet-name>jsp</servlet-name>
        <servlet-class>org.apache.jasper.servlet.JspServlet</servlet-class>
        <init-param>
            <param-name>logVerbosityLevel</param-name>
            <param-value>WARNING</param-value>
        </init-param>
        <load-on-startup>3</load-on-startup>
    </servlet>


  <!-- Server Side Includes processing servlet, which processes
    -->
  <!-- directives in HTML pages consistent with similar support in
    -->
  <!-- servers like Apache.  Traditionally, this servlet is mapped
   -->
  <!-- URL pattern "*.shtml".  This servlet supports the
          -->
  <!-- initialization parameters (default values are in square
ackets):   -->
  <!--                                                                      
-->
  <!--   buffered            Should output from this servlet be
ffered?   -->
  <!--                       (0=false, 1=true)
     -->
  <!--                                                                      
-->
  <!--   debug               Debugging detail level for messages
ed     -->
  <!--                       by this servlet.
     -->
  <!--                                                                      
-->
  <!--   expires             The number of seconds before a page with
I   -->
  <!--                       directives will expire.  [No
         -->
  <!--                                                                      
-->
  <!--
                          -->
  <!--                       Should "virtual" paths be interpreted
   -->
  <!--                       relative to the context root, instead
   -->
  <!--                       the server root?  (0=false, 1=true)
    -->
  <!--                                                                      
-->
  <!--                                                                      
-->
  <!-- IMPORTANT: To use the SSI servlet, you also need to rename
    -->
  <!--            $CATALINA_HOME/server/lib/servlets-ssi.renametojar
le   -->
  <!--            to
ME/server/lib/servlets-ssi.jar             -->

<!--
    <servlet>
        <servlet-name>ssi</servlet-name>
        <servlet-class>
          org.apache.catalina.ssi.SSIServlet
        </servlet-class>
        <init-param>
          <param-name>buffered</param-name>
          <param-value>1</param-value>
        </init-param>
        <init-param>
          <param-name>debug</param-name>
          <param-value>0</param-value>
        </init-param>
        <init-param>
          <param-name>expires</param-name>
          <param-value>666</param-value>
        </init-param>
        <init-param>
          <param-name>isVirtualWebappRelative</param-name>
          <param-value>0</param-value>
        </init-param>
        <load-on-startup>4</load-on-startup>
    </servlet>
-->


  <!-- Common Gateway Includes (CGI) processing servlet, which
orts     -->
  <!-- execution of external applications that conform to the CGI
     -->
  <!-- requirements.  Typically, this servlet is mapped to the URL
attern  -->
  <!-- "/cgi-bin/*", which means that any CGI applications that
    -->
  <!-- executed must be present within the web application.  This
rvlet   -->
  <!-- supports the following initialization parameters (default
es     -->
  <!-- are in square
           -->
  <!--                                                                      
-->
  <!--   cgiPathPrefix       The CGI search path will start
   -->
  <!--                       webAppRootDir + File.separator + this
refix.  -->
  <!--
i]                                  -->
  <!--                                                                      
-->
  <!--   clientInputTimeout  The time (in milliseconds) to wait for
put   -->
  <!--                       from the browser before assuming that
re    -->
  <!--                       is none.
       -->
  <!--                                                                      
-->
  <!--   debug               Debugging detail level for messages
ed     -->
  <!--                       by this servlet.
     -->
  <!--                                                                      
-->
  <!-- IMPORTANT: To use the CGI servlet, you also need to rename
    -->
  <!--            $CATALINA_HOME/server/lib/servlets-cgi.renametojar
le   -->
  <!--            to
ME/server/lib/servlets-cgi.jar             -->

<!--
    <servlet>
        <servlet-name>cgi</servlet-name>
        <servlet-class>org.apache.catalina.servlets.CGIServlet</servlet-clas
s>
        <init-param>
          <param-name>clientInputTimeout</param-name>
          <param-value>100</param-value>
        </init-param>
        <init-param>
          <param-name>debug</param-name>
          <param-value>6</param-value>
        </init-param>
        <init-param>
          <param-name>cgiPathPrefix</param-name>
          <param-value>WEB-INF/cgi</param-value>
        </init-param>
         <load-on-startup>5</load-on-startup>
    </servlet>
-->


  <!-- ================ Built In Servlet Mappings
========================= -->


  <!-- The servlet mappings for the built in servlets defined above.
Note  -->
  <!-- that, by default, the CGI and SSI servlets are *not* mapped.
u    -->
  <!-- must uncomment these mappings (or add them to your application's
own -->
  <!-- web.xml deployment descriptor) to enable these
         -->

    <!-- The mapping for the default servlet -->
    <servlet-mapping>
        <servlet-name>default</servlet-name>
        <url-pattern>/</url-pattern>
    </servlet-mapping>

    <!-- The mapping for the invoker servlet -->
<!--
    <servlet-mapping>
        <servlet-name>invoker</servlet-name>
        <url-pattern>/servlet/*</url-pattern>
    </servlet-mapping>
-->

    <!-- The mapping for the JSP servlet -->
    <servlet-mapping>
        <servlet-name>jsp</servlet-name>
        <url-pattern>*.jsp</url-pattern>
    </servlet-mapping>

    <!-- The mapping for the SSI servlet -->
<!--
    <servlet-mapping>
        <servlet-name>ssi</servlet-name>
        <url-pattern>*.shtml</url-pattern>
    </servlet-mapping>
-->

    <!-- The mapping for the CGI Gateway servlet -->
<!--
    <servlet-mapping>
        <servlet-name>cgi</servlet-name>
        <url-pattern>/cgi-bin/*</url-pattern>
    </servlet-mapping>
-->


  <!-- ==================== Default Session Configuration
================= -->
  <!-- You can set the default session timeout (in minutes) for all
wly   -->
  <!-- created sessions by modifying the value
       -->

    <session-config>
        <session-timeout>30</session-timeout>
    </session-config>


  <!-- ===================== Default MIME Type Mappings
=================== -->
  <!-- When serving static resources, Tomcat will automatically
erate    -->
  <!-- a "Content-Type" header based on the resource's filename
xtension,  -->
  <!-- based on these mappings.  Additional mappings can be added here
to  -->
  <!-- apply to all web applications), or in your own application's
web.xml -->
  <!-- deployment
            -->

    <mime-mapping>
        <extension>abs</extension>
        <mime-type>audio/x-mpeg</mime-type>
    </mime-mapping>
    <mime-mapping>
        <extension>ai</extension>
        <mime-type>application/postscript</mime-type>
    </mime-mapping>
    <mime-mapping>
        <extension>aif</extension>
        <mime-type>audio/x-aiff</mime-type>
    </mime-mapping>
    <mime-mapping>
        <extension>aifc</extension>
        <mime-type>audio/x-aiff</mime-type>
    </mime-mapping>
    <mime-mapping>
        <extension>aiff</extension>
        <mime-type>audio/x-aiff</mime-type>
    </mime-mapping>
    <mime-mapping>
        <extension>aim</extension>
        <mime-type>application/x-aim</mime-type>
    </mime-mapping>
    <mime-mapping>
        <extension>art</extension>
        <mime-type>image/x-jg</mime-type>
    </mime-mapping>
    <mime-mapping>
        <extension>asf</extension>
        <mime-type>video/x-ms-asf</mime-type>
    </mime-mapping>
    <mime-mapping>
        <extension>asx</extension>
        <mime-type>video/x-ms-asf</mime-type>
    </mime-mapping>
    <mime-mapping>
        <extension>au</extension>
        <mime-type>audio/basic</mime-type>
    </mime-mapping>
    <mime-mapping>
        <extension>avi</extension>
        <mime-type>video/x-msvideo</mime-type>
    </mime-mapping>
    <mime-mapping>
        <extension>avx</extension>
        <mime-type>video/x-rad-screenplay</mime-type>
    </mime-mapping>
    <mime-mapping>
        <extension>bcpio</extension>
        <mime-type>application/x-bcpio</mime-type>
    </mime-mapping>
    <mime-mapping>
        <extension>bin</extension>
        <mime-type>application/octet-stream</mime-type>
    </mime-mapping>
    <mime-mapping>
        <extension>bmp</extension>
        <mime-type>image/bmp</mime-type>
    </mime-mapping>
    <mime-mapping>
        <extension>body</extension>
        <mime-type>text/html</mime-type>
    </mime-mapping>
    <mime-mapping>
        <extension>cdf</extension>
        <mime-type>application/x-cdf</mime-type>
    </mime-mapping>
    <mime-mapping>
        <extension>cer</extension>
        <mime-type>application/x-x509-ca-cert</mime-type>
    </mime-mapping>
    <mime-mapping>
        <extension>class</extension>
        <mime-type>application/java</mime-type>
    </mime-mapping>
    <mime-mapping>
        <extension>cpio</extension>
        <mime-type>application/x-cpio</mime-type>
    </mime-mapping>
    <mime-mapping>
        <extension>csh</extension>
        <mime-type>application/x-csh</mime-type>
    </mime-mapping>
    <mime-mapping>
        <extension>css</extension>
        <mime-type>text/css</mime-type>
    </mime-mapping>
    <mime-mapping>
        <extension>dib</extension>
        <mime-type>image/bmp</mime-type>
    </mime-mapping>
    <mime-mapping>
        <extension>doc</extension>
        <mime-type>application/msword</mime-type>
    </mime-mapping>
    <mime-mapping>
        <extension>dtd</extension>
        <mime-type>text/plain</mime-type>
    </mime-mapping>
    <mime-mapping>
        <extension>dv</extension>
        <mime-type>video/x-dv</mime-type>
    </mime-mapping>
    <mime-mapping>
        <extension>dvi</extension>
        <mime-type>application/x-dvi</mime-type>
    </mime-mapping>
    <mime-mapping>
        <extension>eps</extension>
        <mime-type>application/postscript</mime-type>
    </mime-mapping>
    <mime-mapping>
        <extension>etx</extension>
        <mime-type>text/x-setext</mime-type>
    </mime-mapping>
    <mime-mapping>
        <extension>exe</extension>
        <mime-type>application/octet-stream</mime-type>
    </mime-mapping>
    <mime-mapping>
        <extension>gif</extension>
        <mime-type>image/gif</mime-type>
    </mime-mapping>
    <mime-mapping>
        <extension>gtar</extension>
        <mime-type>application/x-gtar</mime-type>
    </mime-mapping>
    <mime-mapping>
        <extension>gz</extension>
        <mime-type>application/x-gzip</mime-type>
    </mime-mapping>
    <mime-mapping>
        <extension>hdf</extension>
        <mime-type>application/x-hdf</mime-type>
    </mime-mapping>
    <mime-mapping>
        <extension>hqx</extension>
        <mime-type>application/mac-binhex40</mime-type>
    </mime-mapping>
    <mime-mapping>
        <extension>htc</extension>
        <mime-type>text/x-component</mime-type>
    </mime-mapping>
    <mime-mapping>
        <extension>htm</extension>
        <mime-type>text/html</mime-type>
    </mime-mapping>
    <mime-mapping>
        <extension>html</extension>
        <mime-type>text/html</mime-type>
    </mime-mapping>
    <mime-mapping>
        <extension>hqx</extension>
        <mime-type>application/mac-binhex40</mime-type>
    </mime-mapping>
    <mime-mapping>
        <extension>ief</extension>
        <mime-type>image/ief</mime-type>
    </mime-mapping>
    <mime-mapping>
        <extension>jad</extension>
        <mime-type>text/vnd.sun.j2me.app-descriptor</mime-type>
    </mime-mapping>
    <mime-mapping>
        <extension>jar</extension>
        <mime-type>application/java-archive</mime-type>
    </mime-mapping>
    <mime-mapping>
        <extension>java</extension>
        <mime-type>text/plain</mime-type>
    </mime-mapping>
    <mime-mapping>
        <extension>jnlp</extension>
        <mime-type>application/x-java-jnlp-file</mime-type>
    </mime-mapping>
    <mime-mapping>
        <extension>jpe</extension>
        <mime-type>image/jpeg</mime-type>
    </mime-mapping>
    <mime-mapping>
        <extension>jpeg</extension>
        <mime-type>image/jpeg</mime-type>
    </mime-mapping>
    <mime-mapping>
        <extension>jpg</extension>
        <mime-type>image/jpeg</mime-type>
    </mime-mapping>
    <mime-mapping>
        <extension>js</extension>
        <mime-type>text/javascript</mime-type>
    </mime-mapping>
    <mime-mapping>
        <extension>jsf</extension>
        <mime-type>text/plain</mime-type>
    </mime-mapping>
    <mime-mapping>
        <extension>jspf</extension>
        <mime-type>text/plain</mime-type>
    </mime-mapping>
    <mime-mapping>
        <extension>kar</extension>
        <mime-type>audio/x-midi</mime-type>
    </mime-mapping>
    <mime-mapping>
        <extension>latex</extension>
        <mime-type>application/x-latex</mime-type>
    </mime-mapping>
    <mime-mapping>
        <extension>m3u</extension>
        <mime-type>audio/x-mpegurl</mime-type>
    </mime-mapping>
    <mime-mapping>
        <extension>mac</extension>
        <mime-type>image/x-macpaint</mime-type>
    </mime-mapping>
    <mime-mapping>
        <extension>man</extension>
        <mime-type>application/x-troff-man</mime-type>
    </mime-mapping>
    <mime-mapping>
        <extension>me</extension>
        <mime-type>application/x-troff-me</mime-type>
    </mime-mapping>
    <mime-mapping>
        <extension>mid</extension>
        <mime-type>audio/x-midi</mime-type>
    </mime-mapping>
    <mime-mapping>
        <extension>midi</extension>
        <mime-type>audio/x-midi</mime-type>
    </mime-mapping>
    <mime-mapping>
        <extension>mif</extension>
        <mime-type>application/x-mif</mime-type>
    </mime-mapping>
    <mime-mapping>
        <extension>mov</extension>
        <mime-type>video/quicktime</mime-type>
    </mime-mapping>
    <mime-mapping>
        <extension>movie</extension>
        <mime-type>video/x-sgi-movie</mime-type>
    </mime-mapping>
    <mime-mapping>
        <extension>mp1</extension>
        <mime-type>audio/x-mpeg</mime-type>
    </mime-mapping>
    <mime-mapping>
        <extension>mp2</extension>
        <mime-type>audio/x-mpeg</mime-type>
    </mime-mapping>
    <mime-mapping>
        <extension>mp3</extension>
        <mime-type>audio/x-mpeg</mime-type>
    </mime-mapping>
    <mime-mapping>
        <extension>mpa</extension>
        <mime-type>audio/x-mpeg</mime-type>
    </mime-mapping>
    <mime-mapping>
        <extension>mpe</extension>
        <mime-type>video/mpeg</mime-type>
    </mime-mapping>
    <mime-mapping>
        <extension>mpeg</extension>
        <mime-type>video/mpeg</mime-type>
    </mime-mapping>
    <mime-mapping>
        <extension>mpega</extension>
        <mime-type>audio/x-mpeg</mime-type>
    </mime-mapping>
    <mime-mapping>
        <extension>mpg</extension>
        <mime-type>video/mpeg</mime-type>
    </mime-mapping>
    <mime-mapping>
        <extension>mpv2</extension>
        <mime-type>video/mpeg2</mime-type>
    </mime-mapping>
    <mime-mapping>
        <extension>ms</extension>
        <mime-type>application/x-wais-source</mime-type>
    </mime-mapping>
    <mime-mapping>
        <extension>nc</extension>
        <mime-type>application/x-netcdf</mime-type>
    </mime-mapping>
    <mime-mapping>
        <extension>oda</extension>
        <mime-type>application/oda</mime-type>
    </mime-mapping>
    <mime-mapping>
        <extension>pbm</extension>
        <mime-type>image/x-portable-bitmap</mime-type>
    </mime-mapping>
    <mime-mapping>
        <extension>pct</extension>
        <mime-type>image/pict</mime-type>
    </mime-mapping>
    <mime-mapping>
        <extension>pdf</extension>
        <mime-type>application/pdf</mime-type>
    </mime-mapping>
    <mime-mapping>
        <extension>pgm</extension>
        <mime-type>image/x-portable-graymap</mime-type>
    </mime-mapping>
    <mime-mapping>
        <extension>pic</extension>
        <mime-type>image/pict</mime-type>
    </mime-mapping>
    <mime-mapping>
        <extension>pict</extension>
        <mime-type>image/pict</mime-type>
    </mime-mapping>
    <mime-mapping>
        <extension>pls</extension>
        <mime-type>audio/x-scpls</mime-type>
    </mime-mapping>
    <mime-mapping>
        <extension>png</extension>
        <mime-type>image/png</mime-type>
    </mime-mapping>
    <mime-mapping>
        <extension>pnm</extension>
        <mime-type>image/x-portable-anymap</mime-type>
    </mime-mapping>
    <mime-mapping>
        <extension>pnt</extension>
        <mime-type>image/x-macpaint</mime-type>
    </mime-mapping>
    <mime-mapping>
        <extension>ppm</extension>
        <mime-type>image/x-portable-pixmap</mime-type>
    </mime-mapping>
    <mime-mapping>
        <extension>ps</extension>
        <mime-type>application/postscript</mime-type>
    </mime-mapping>
    <mime-mapping>
        <extension>psd</extension>
        <mime-type>image/x-photoshop</mime-type>
    </mime-mapping>
    <mime-mapping>
        <extension>qt</extension>
        <mime-type>video/quicktime</mime-type>
    </mime-mapping>
    <mime-mapping>
        <extension>qti</extension>
        <mime-type>image/x-quicktime</mime-type>
    </mime-mapping>
    <mime-mapping>
        <extension>qtif</extension>
        <mime-type>image/x-quicktime</mime-type>
    </mime-mapping>
    <mime-mapping>
        <extension>ras</extension>
        <mime-type>image/x-cmu-raster</mime-type>
    </mime-mapping>
    <mime-mapping>
        <extension>rgb</extension>
        <mime-type>image/x-rgb</mime-type>
    </mime-mapping>
    <mime-mapping>
        <extension>rm</extension>
        <mime-type>application/vnd.rn-realmedia</mime-type>
    </mime-mapping>
    <mime-mapping>
        <extension>roff</extension>
        <mime-type>application/x-troff</mime-type>
    </mime-mapping>
    <mime-mapping>
        <extension>rtf</extension>
        <mime-type>application/rtf</mime-type>
    </mime-mapping>
    <mime-mapping>
        <extension>rtx</extension>
        <mime-type>text/richtext</mime-type>
    </mime-mapping>
    <mime-mapping>
        <extension>sh</extension>
        <mime-type>application/x-sh</mime-type>
    </mime-mapping>
    <mime-mapping>
        <extension>shar</extension>
        <mime-type>application/x-shar</mime-type>
    </mime-mapping>
    <mime-mapping>
        <extension>smf</extension>
        <mime-type>audio/x-midi</mime-type>
    </mime-mapping>
    <mime-mapping>
        <extension>snd</extension>
        <mime-type>audio/basic</mime-type>
    </mime-mapping>
    <mime-mapping>
        <extension>src</extension>
        <mime-type>application/x-wais-source</mime-type>
    </mime-mapping>
    <mime-mapping>
        <extension>sv4cpio</extension>
        <mime-type>application/x-sv4cpio</mime-type>
    </mime-mapping>
    <mime-mapping>
        <extension>sv4crc</extension>
        <mime-type>application/x-sv4crc</mime-type>
    </mime-mapping>
    <mime-mapping>
        <extension>swf</extension>
        <mime-type>application/x-shockwave-flash</mime-type>
    </mime-mapping>
    <mime-mapping>
        <extension>t</extension>
        <mime-type>application/x-troff</mime-type>
    </mime-mapping>
    <mime-mapping>
        <extension>tar</extension>
        <mime-type>application/x-tar</mime-type>
    </mime-mapping>
    <mime-mapping>
        <extension>tcl</extension>
        <mime-type>application/x-tcl</mime-type>
    </mime-mapping>
    <mime-mapping>
        <extension>tex</extension>
        <mime-type>application/x-tex</mime-type>
    </mime-mapping>
    <mime-mapping>
        <extension>texi</extension>
        <mime-type>application/x-texinfo</mime-type>
    </mime-mapping>
    <mime-mapping>
        <extension>texinfo</extension>
        <mime-type>application/x-texinfo</mime-type>
    </mime-mapping>
    <mime-mapping>
        <extension>tif</extension>
        <mime-type>image/tiff</mime-type>
    </mime-mapping>
    <mime-mapping>
        <extension>tiff</extension>
        <mime-type>image/tiff</mime-type>
    </mime-mapping>
    <mime-mapping>
        <extension>tr</extension>
        <mime-type>application/x-troff</mime-type>
    </mime-mapping>
    <mime-mapping>
        <extension>tsv</extension>
        <mime-type>text/tab-separated-values</mime-type>
    </mime-mapping>
    <mime-mapping>
        <extension>txt</extension>
        <mime-type>text/plain</mime-type>
    </mime-mapping>
    <mime-mapping>
        <extension>ulw</extension>
        <mime-type>audio/basic</mime-type>
    </mime-mapping>
    <mime-mapping>
        <extension>ustar</extension>
        <mime-type>application/x-ustar</mime-type>
    </mime-mapping>
    <mime-mapping>
        <extension>xbm</extension>
        <mime-type>image/x-xbitmap</mime-type>
    </mime-mapping>
    <mime-mapping>
        <extension>xml</extension>
        <mime-type>text/xml</mime-type>
    </mime-mapping>
    <mime-mapping>
        <extension>xpm</extension>
        <mime-type>image/x-xpixmap</mime-type>
    </mime-mapping>
    <mime-mapping>
        <extension>xsl</extension>
        <mime-type>text/xml</mime-type>
    </mime-mapping>
    <mime-mapping>
        <extension>xwd</extension>
        <mime-type>image/x-xwindowdump</mime-type>
    </mime-mapping>
    <mime-mapping>
        <extension>wav</extension>
        <mime-type>audio/x-wav</mime-type>
    </mime-mapping>
    <mime-mapping>
        <extension>svg</extension>
        <mime-type>image/svg+xml</mime-type>
    </mime-mapping>
    <mime-mapping>
        <extension>svgz</extension>
        <mime-type>image/svg+xml</mime-type>
    </mime-mapping>
    <mime-mapping>
        <!-- Wireless Bitmap -->
        <extension>wbmp</extension>
        <mime-type>image/vnd.wap.wbmp</mime-type>
    </mime-mapping>
    <mime-mapping>
        <!-- WML Source -->
        <extension>wml</extension>
        <mime-type>text/vnd.wap.wml</mime-type>
    </mime-mapping>
    <mime-mapping>
        <!-- Compiled WML -->
        <extension>wmlc</extension>
        <mime-type>application/vnd.wap.wmlc</mime-type>
    </mime-mapping>
    <mime-mapping>
        <!-- WML Script Source -->
        <extension>wmls</extension>
        <mime-type>text/vnd.wap.wmlscript</mime-type>
    </mime-mapping>
    <mime-mapping>
        <!-- Compiled WML Script -->
        <extension>wmlscriptc</extension>
        <mime-type>application/vnd.wap.wmlscriptc</mime-type>
    </mime-mapping>
    <mime-mapping>
        <extension>wrl</extension>
        <mime-type>x-world/x-vrml</mime-type>
    </mime-mapping>
    <mime-mapping>
        <extension>Z</extension>
        <mime-type>application/x-compress</mime-type>
    </mime-mapping>
    <mime-mapping>
        <extension>z</extension>
        <mime-type>application/x-compress</mime-type>
    </mime-mapping>
    <mime-mapping>
        <extension>zip</extension>
        <mime-type>application/zip</mime-type>
    </mime-mapping>


  <!-- ==================== Default Welcome File List
===================== -->
  <!-- When a request URI refers to a directory, the default servlet
ooks  -->
  <!-- for a "welcome file" within that directory and, if
         -->
  <!-- to the corresponding resource URI for display.  If no welcome
le   -->
  <!-- is present, the default servlet either serves a directory
sting,   -->
  <!-- or returns a 404 status, depending on how it is
d.          -->
  <!--                                                                      
-->
  <!-- If you define welcome files in your own application's
        -->
  <!-- deployment descriptor, that list *replaces* the list
gured      -->
  <!-- here, so be sure that you include any of the default values
     -->
  <!-- you wish to
         -->

    <welcome-file-list>
        <welcome-file>index.html</welcome-file>
        <welcome-file>index.htm</welcome-file>
        <welcome-file>index.jsp</welcome-file>
    </welcome-file-list>

</web-app>

>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
>>>>>.
thanks
akki


-----Original Message-----
From: Quinton Delpeche [mailto:quintond@vippayroll.co.za]
Sent: Wednesday, November 24, 2004 5:09 PM
To: tomcat-user@jakarta.apache.org
Subject: Re: org.apache.commons.digester.Digester error


On Wednesday 24 November 2004 13:29, akki wrote:
> The content of element type
> "web-app" must match

This is where your error is.

You xml file doesn't have a closing </web-app> or one of the other tagsets
doesn't have a closing equivalent.

Check you xml file for the problem... ...or insert into an e-mail and I can
check for you.

Q
--
Quinton Delpeche
Internal Systems Developer
Softline VIP

Telephone: +27 12 420 7000
Direct:    +27 12 420 7007
Facsimile: +27 12 420 7344

http://www.vippayroll.co.za/

What this country needs is a good five cent nickel.


---------------------------------------------------------------------
To unsubscribe, e-mail: tomcat-user-unsubscribe@jakarta.apache.org
For additional commands, e-mail: tomcat-user-help@jakarta.apache.org


Re: org.apache.commons.digester.Digester error

Posted by Quinton Delpeche <qu...@vippayroll.co.za>.
On Wednesday 24 November 2004 13:29, akki wrote:
> The content of element type
> "web-app" must match

This is where your error is.

You xml file doesn't have a closing </web-app> or one of the other tagsets 
doesn't have a closing equivalent.

Check you xml file for the problem... ...or insert into an e-mail and I can 
check for you.

Q
-- 
Quinton Delpeche
Internal Systems Developer
Softline VIP

Telephone: +27 12 420 7000
Direct:    +27 12 420 7007
Facsimile: +27 12 420 7344

http://www.vippayroll.co.za/

What this country needs is a good five cent nickel.

org.apache.commons.digester.Digester error

Posted by akki <ak...@bhelhwr.co.in>.
hi list

i am getting follwoing log enteries
whenever i start tomcat

i dont know what is wrong

>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>


Nov 24, 2004 4:50:45 PM org.apache.commons.digester.Digester error
SEVERE: Parse Error at line 36 column 11: The content of element type
"web-app" must match
"(icon?,display-name?,description?,distributable?,context-param*,filter*,fil
ter-mapping*,listener*,servlet*,servlet-mapping*,session-config?,mime-mappin
g*,welcome-file-list?,error-page*,taglib*,resource-env-ref*,resource-ref*,se
curity-constraint*,login-config?,security-role*,env-entry*,ejb-ref*,ejb-loca
l-ref*)".
org.xml.sax.SAXParseException: The content of element type "web-app" must
match
"(icon?,display-name?,description?,distributable?,context-param*,filter*,fil
ter-mapping*,listener*,servlet*,servlet-mapping*,session-config?,mime-mappin
g*,welcome-file-list?,error-page*,taglib*,resource-env-ref*,resource-ref*,se
curity-constraint*,login-config?,security-role*,env-entry*,ejb-ref*,ejb-loca
l-ref*)".
	at
org.apache.xerces.util.ErrorHandlerWrapper.createSAXParseException(ErrorHand
lerWrapper.java:232)
	at
org.apache.xerces.util.ErrorHandlerWrapper.error(ErrorHandlerWrapper.java:17
3)
	at
org.apache.xerces.impl.XMLErrorReporter.reportError(XMLErrorReporter.java:37
1)
	at
org.apache.xerces.impl.XMLErrorReporter.reportError(XMLErrorReporter.java:30
5)
	at
org.apache.xerces.impl.dtd.XMLDTDValidator.handleEndElement(XMLDTDValidator.
java:1918)
	at
org.apache.xerces.impl.dtd.XMLDTDValidator.endElement(XMLDTDValidator.java:8
51)
	at
org.apache.xerces.impl.XMLDocumentFragmentScannerImpl.scanEndElement(XMLDocu
mentFragmentScannerImpl.java:1008)
	at
org.apache.xerces.impl.XMLDocumentFragmentScannerImpl$FragmentContentDispatc
her.dispatch(XMLDocumentFragmentScannerImpl.java:1469)
	at
org.apache.xerces.impl.XMLDocumentFragmentScannerImpl.scanDocument(XMLDocume
ntFragmentScannerImpl.java:329)
	at
org.apache.xerces.parsers.DTDConfiguration.parse(DTDConfiguration.java:525)
	at
org.apache.xerces.parsers.DTDConfiguration.parse(DTDConfiguration.java:581)
	at org.apache.xerces.parsers.XMLParser.parse(XMLParser.java:152)
	at
org.apache.xerces.parsers.AbstractSAXParser.parse(AbstractSAXParser.java:117
5)
	at org.apache.commons.digester.Digester.parse(Digester.java:1495)
	at
org.apache.catalina.startup.ContextConfig.applicationConfig(ContextConfig.ja
va:282)
	at org.apache.catalina.startup.ContextConfig.start(ContextConfig.java:639)
	at
org.apache.catalina.startup.ContextConfig.lifecycleEvent(ContextConfig.java:
243)
	at
org.apache.catalina.util.LifecycleSupport.fireLifecycleEvent(LifecycleSuppor
t.java:166)
	at
org.apache.catalina.core.StandardContext.start(StandardContext.java:3567)
	at
org.apache.catalina.core.ContainerBase.addChildInternal(ContainerBase.java:8
21)
	at org.apache.catalina.core.ContainerBase.addChild(ContainerBase.java:807)
	at org.apache.catalina.core.StandardHost.addChild(StandardHost.java:579)
	at
org.apache.catalina.core.StandardHostDeployer.addChild(StandardHostDeployer.
java:529)
	at sun.reflect.GeneratedMethodAccessor65.invoke(Unknown Source)
	at
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl
.java:25)
	at java.lang.reflect.Method.invoke(Method.java:324)
	at
org.apache.commons.beanutils.MethodUtils.invokeMethod(MethodUtils.java:228)
	at org.apache.commons.digester.SetNextRule.end(SetNextRule.java:260)
	at org.apache.commons.digester.Digester.endElement(Digester.java:1036)
	at
org.apache.xerces.parsers.AbstractSAXParser.endElement(AbstractSAXParser.jav
a:585)
	at
org.apache.xerces.impl.XMLNamespaceBinder.endElement(XMLNamespaceBinder.java
:647)
	at
org.apache.xerces.impl.XMLDocumentFragmentScannerImpl.scanEndElement(XMLDocu
mentFragmentScannerImpl.java:1008)
	at
org.apache.xerces.impl.XMLDocumentFragmentScannerImpl$FragmentContentDispatc
her.dispatch(XMLDocumentFragmentScannerImpl.java:1469)
	at
org.apache.xerces.impl.XMLDocumentFragmentScannerImpl.scanDocument(XMLDocume
ntFragmentScannerImpl.java:329)
	at
org.apache.xerces.parsers.DTDConfiguration.parse(DTDConfiguration.java:525)
	at
org.apache.xerces.parsers.DTDConfiguration.parse(DTDConfiguration.java:581)
	at org.apache.xerces.parsers.XMLParser.parse(XMLParser.java:152)
	at
org.apache.xerces.parsers.AbstractSAXParser.parse(AbstractSAXParser.java:117
5)
	at org.apache.commons.digester.Digester.parse(Digester.java:1514)
	at
org.apache.catalina.core.StandardHostDeployer.install(StandardHostDeployer.j
ava:335)
	at org.apache.catalina.core.StandardHost.install(StandardHost.java:803)
	at
org.apache.catalina.startup.HostConfig.deployDescriptors(HostConfig.java:452
)
	at org.apache.catalina.startup.HostConfig.deployApps(HostConfig.java:409)
	at org.apache.catalina.startup.HostConfig.start(HostConfig.java:879)
	at
org.apache.catalina.startup.HostConfig.lifecycleEvent(HostConfig.java:368)
	at
org.apache.catalina.util.LifecycleSupport.fireLifecycleEvent(LifecycleSuppor
t.java:166)
	at org.apache.catalina.core.ContainerBase.start(ContainerBase.java:1196)
	at org.apache.catalina.core.StandardHost.start(StandardHost.java:738)
	at org.apache.catalina.core.ContainerBase.start(ContainerBase.java:1188)
	at org.apache.catalina.core.StandardEngine.start(StandardEngine.java:347)
	at org.apache.catalina.core.StandardService.start(StandardService.java:497)
	at org.apache.catalina.core.StandardServer.start(StandardServer.java:2189)
	at org.apache.catalina.startup.Catalina.start(Catalina.java:512)
	at org.apache.catalina.startup.Catalina.execute(Catalina.java:400)
	at org.apache.catalina.startup.Catalina.process(Catalina.java:180)
	at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
	at
sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39
)
	at
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl
.java:25)
	at java.lang.reflect.Method.invoke(Method.java:324)
	at org.apache.catalina.startup.Bootstrap.main(Bootstrap.java:203)


>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>

thanks
akki


---------------------------------------------------------------------
To unsubscribe, e-mail: tomcat-user-unsubscribe@jakarta.apache.org
For additional commands, e-mail: tomcat-user-help@jakarta.apache.org


msgAjp.receive(): Bad signature 00 !!!!!!urgent

Posted by akki <ak...@bhelhwr.co.in>.
hi list
i m getting this error after every five to  ten minutes in
my apache log file..
i dont know where it is indication
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>


[Wed Nov 24 16:50:25 2004] [error] msgAjp.receive(): Bad signature 00
[Wed Nov 24 16:50:25 2004] [error] channelSocket.receive(): Bad header
[Wed Nov 24 16:50:25 2004] [error] workerEnv.processCallbacks() Error
reading reply
[Wed Nov 24 16:50:25 2004] [error] ajp13.service() ajpGetReply recoverable
error 120000
[Wed Nov 24 16:50:25 2004] [error] channelSocket.open() connect failed
localhost:8009 111 Connection refused
[Wed Nov 24 16:50:25 2004] [error] ajp13.connect() failed
ajp13:localhost:8009
[Wed Nov 24 16:50:25 2004] [error] ajp13.service() failed to connect
endpoint errno=111 Connection refused
[Wed Nov 24 16:50:25 2004] [error] ajp13.service() Error  forwarding
ajp13:localhost:8009 1 1
[Wed Nov 24 16:50:25 2004] [error] lb.service() worker failed
ajp13:localhost:8009
[Wed Nov 24 16:50:25 2004] [error] channelSocket.open() connect failed
localhost:8009 111 Connection refused
[Wed Nov 24 16:50:25 2004] [error] ajp13.connect() failed
ajp13:localhost:8009
[Wed Nov 24 16:50:25 2004] [error] ajp13.service() failed to connect
endpoint errno=111 Connection refused
[Wed Nov 24 16:50:25 2004] [error] ajp13.service() Error  forwarding
ajp13:localhost:8009 1 1
[Wed Nov 24 16:50:25 2004] [error] lb.service() worker failed
ajp13:localhost:8009
[Wed Nov 24 16:50:25 2004] [error] lb_worker.service() all workers in error
or disabled state
[Wed Nov 24 16:50:25 2004] [error] mod_jk.handler() Error connecting to
tomcat 120000For


>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>

thanks in advance
akki


---------------------------------------------------------------------
To unsubscribe, e-mail: tomcat-user-unsubscribe@jakarta.apache.org
For additional commands, e-mail: tomcat-user-help@jakarta.apache.org