Hello.
You ought to type proper entries in two files: 'uriworkermap.properties' and
'web.xml' (that file is placed in %CATALINA_HOME%\webapps\ROOT\WEB-INF
directory). In these files You should type what do You want redirect to
Tomcat, for instance:
if we wish redirect the whole contents under URL:
http://www.test.it/servlet/ we must do:
1. in Site (in IIS) that serve URL: www.test.it we adding Virtual Site
which name is 'jakarta' (we have to set path for 'jakarta' to directory when
we put our 'isapi_redirect.dll');
2. in 'uriworkermap.properties' we must type something as this:
#
# Default worker to be used through our mappings
#
default.worker=ajp13
#
# Sites to be redirected to Tomcat
#
/examples=$(default.worker)
/examples/*=$(default.worker)
/servlet/*=$(default.worker)
3. in web.xml we must type:
<?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>
<servlet-mapping>
<servlet-name>invoker</servlet-name>
<url-pattern>/servlet/*</url-pattern>
</servlet-mapping>
</web-app>
4. restart Your Tomcat and IIS, of course.
Good luck and regards,
Konrad Rusz
----- Original Message -----
From: "Gigi" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Wednesday, March 12, 2003 9:27 AM
Subject: Tomcat 4 and IIS 5
Dear Sirs, I'm trying to configure Tomcat to run under IIS and to solve my
domain without ":8080"
I installed correctly the isapi_redirector.dll and installed under IIS, I
configured workers.properties and uriworkermap.properties but the system
doesn't solve the Java scripting. If I write the same directory with ":8080"
everything it's ok.
The problem is present also for the tomcat examples page.
Could you please help me?
Thanks
Emanuele
--------------------------------------------------------------------------
Emanuele Boccaletti
- ITALY -
--------------------------------------------------------------------------
Guerra grande nessuno fa...
--------------------------------------------------------------------------
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]