List,
This is a repost so if you are getting this twice, I appologize.  I am new to Tomcat 
and have what I
hope is a simple question.  I have a servlet that parses an xml file and then formats 
the output,
what I want to do is be able to call http://server.com/myServlet/index.xml and have 
Tomcat invoke
the servlet in the myServlet and output the parsed and formatted page. Now I CAN call
http://server.com:8080/myServlet/index.xml and it all works fine.  I have added the 
following lines
to the following files:

uriworkermap.properties:
/myServlet/*=$(default.worker)

web.xml:
<servlet>
<servlet-name>myServlet</servlet-name>
<servlet-class>com.myServlet.engine.EngineServlet</servlet-class>
</servlet>

<servlet-mapping>
<servlet-name>myServlet</servlet-name>
<url-pattern>/myServlet</url-pattern>
</servlet-mapping>

Here is my server setup:
Win NT 4.0 SP6a
256 MB Ram
IIS 4
isapi redirector is installed and working (I can do JSP and the example servlets)
Tomcat is NOT running as a service (though I would like to)
Tomcat 3.2.2

Any and all help will be much appreciated.

Thanks,
Kevin Queen


Reply via email to