This should be fairly simple.  I can't seem to get Tomcat to see my
servlets.
I have the basic installation up and running and it works, but when I
add in my web-app they are not seen.

I stop and restart Tomcat whenever I reconfig just to be sure.
WebAdapter.class is not a member of a package.
If exceptions are thrown, where will they show up?  Will they show up in
Tomcat.log?
I am attempting to migrate working servlets from JServ to Tomcat and I
am femiliar with Apache - JServ.


I have modified the server.xml file in the Tomcat directory to include
my web app.

<server>
  <contextmanager>
      <context path="/myservlets" docBase=w:/path/to/my/webapp" ...>
      </
   </
</

Note:  my webapp is outside of Tomcat's directory structure... is this
an issue?

The web-inf directory at path looks like this...

         web-inf\classes\WebAdapter.class
         web-inf\web.dtd
         web-inf\web.xml

web.xml has been modified to simply contain WebAdapter.class

<web-app>
     <servlet>
           <servlet-name>
                   WebAdapter
           </
           <servlet-class>
                   WebAdapter
            </
      </

      ...  other stuff ripped off from example web.xml
</web-app>


When I try to surf to machine/myservlets/WebAdapter  the "document" is
not found.
All other servlets in the Tomcat install run ok.  No errors show up
anywhere.

What am I doing wrong?

Thanks;
-Chris

___________________________________________________________________________
To unsubscribe, send email to [EMAIL PROTECTED] and include in the body
of the message "signoff SERVLET-INTEREST".

Archives: http://archives.java.sun.com/archives/servlet-interest.html
Resources: http://java.sun.com/products/servlet/external-resources.html
LISTSERV Help: http://www.lsoft.com/manuals/user/user.html

Reply via email to