This what I did to get IIS5 on Win2K with Tomcat 3.2.1 to work for me:
My server.xml file has lines that look like this:
<Context path="/"
docBase="/Inetpub/wwwroot"
crossContext="false"
debug="0"
reloadable="true" >
</Context>
Note: there is no "C:\" replaced by "/"
Then I added this to my: conf/uriworkermap.properties file:
/*.jsp=ajp12
#or other uri's
/<whatever>/*.jsp=ajp12
Then I restarted my IIS and tomcat services..
The Jar files.. I had the same problem then I found out (in a document
somewhere) that you have to make a directory under WEB-INF called lib
This is where you put your .jar files. (like if you had custom tags, etc)
Hope this helps!
Mike
At 01:00 PM 5/11/2001 -0600, you wrote:
>I finally got IIS to redirect properly
>to Tomcat. Now, I have a few questions about
>config:
>
>1. I want another dir to use besides the examples
>dir under webapps. What files do I need to modify
>for this, and what needs changed? I tried some
>things, but they did not seem to work....I tried
>adding a new context to uriworkermap.properties,
>and I added a stanza in server.xml that was similar
>to the examples.
>
>2. Is there a way to get Jar files to be used? I ended
>up un-jarring things and putting them in web-inf dir
>under classes...I had jar that was working under JRun
>(another JSP/Servlet/etc. engine), but it didn't
>seem to be recognized...do I *have* to build a WAR
>for this?