do you mean ugo or Ugo. It's different in Tomcat 3.2

-----Ursprüngliche Nachricht-----
Von: Lorenzo Soncini [mailto:[EMAIL PROTECTED]]
Gesendet: Mittwoch, 20. Dezember 2000 14:36
An: [EMAIL PROTECTED]
Betreff: Re: Tomcat and IIS 5.0 An example


I have witten that....but don't work.

I try to reinstall my Win2000 test machine :-(
This is my URIWORKERS file
#########################################################
# Configuration for the /ugo context starts.
#########################################################

#
# The following line mounts all JSP file and the /servlet/ uri to tomcat
#
/ugo/servlet/*=$(default.worker)
/ugo/*.jsp=$(default.worker)

#######################################################
# Configuration for the /ugo context ends.
#######################################################
And nothing else!
This is my log:
[IIS redirect log]
[jk_uri_worker_map.c (155)]: Into jk_uri_worker_map_t::uri_worker_map_alloc
[jk_uri_worker_map.c (195)]: Into jk_uri_worker_map_t::uri_worker_map_open
[jk_uri_worker_map.c (210)]: jk_uri_worker_map_t::uri_worker_map_open, rule
map size is 2
[jk_uri_worker_map.c (266)]: Into jk_uri_worker_map_t::uri_worker_map_open,
match rule /ugo/servlet/=$(default.worker) was added
[jk_uri_worker_map.c (255)]: Into jk_uri_worker_map_t::uri_worker_map_open,
suffix rule /ugo/.jsp=$(default.worker) was added
[jk_uri_worker_map.c (295)]: Into jk_uri_worker_map_t::uri_worker_map_open,
there are 2 rules
[jk_uri_worker_map.c (316)]: jk_uri_worker_map_t::uri_worker_map_open, done
[jk_worker.c (82)]: Into wc_open
[jk_worker.c (207)]: Into build_worker_map, creating 1 workers
[jk_worker.c (213)]: build_worker_map, creating worker ajp12
[jk_worker.c (138)]: Into wc_create_worker
[jk_worker.c (152)]: wc_create_worker, about to create instance ajp12 of
ajp12
[jk_ajp12_worker.c (264)]: Into ajp12_worker_factory
[jk_worker.c (161)]: wc_create_worker, about to validate and init ajp12
[jk_ajp12_worker.c (182)]: Into jk_worker_t::validate
[jk_ajp12_worker.c (194)]: In jk_worker_t::validate for worker ajp12 contact
is localhost:8007
[jk_worker.c (177)]: wc_create_worker, done
[jk_worker.c (223)]: build_worker_map, removing old ajp12 worker
[jk_worker.c (235)]: build_worker_map, done
[jk_worker.c (102)]: wc_open, done
[jk_isapi_plugin.c (408)]: HttpFilterProc started
[jk_isapi_plugin.c (429)]: In HttpFilterProc test redirection of
/Ugo/Elenco.jsp
[jk_uri_worker_map.c (344)]: Into jk_uri_worker_map_t::map_uri_to_worker
[jk_uri_worker_map.c (434)]: jk_uri_worker_map_t::map_uri_to_worker, done
without a match
[jk_isapi_plugin.c (452)]: HttpFilterProc [/Ugo/Elenco.jsp] is not a servlet
url
[jk_isapi_plugin.c (461)]: HttpFilterProc check if [/Ugo/Elenco.jsp] is
points to the web-inf directory
[jk_isapi_plugin.c (408)]: HttpFilterProc started
[jk_isapi_plugin.c (429)]: In HttpFilterProc test redirection of
/Ugo/Elenco.jsp
[jk_uri_worker_map.c (344)]: Into jk_uri_worker_map_t::map_uri_to_worker
[jk_uri_worker_map.c (434)]: jk_uri_worker_map_t::map_uri_to_worker, done
without a match
[jk_isapi_plugin.c (452)]: HttpFilterProc [/Ugo/Elenco.jsp] is not a servlet
url
[jk_isapi_plugin.c (461)]: HttpFilterProc check if [/Ugo/Elenco.jsp] is
points to the web-inf directory
[jk_isapi_plugin.c (408)]: HttpFilterProc started
[jk_isapi_plugin.c (429)]: In HttpFilterProc test redirection of
/Ugo/Elenco.jsp
[jk_uri_worker_map.c (344)]: Into jk_uri_worker_map_t::map_uri_to_worker
[jk_uri_worker_map.c (434)]: jk_uri_worker_map_t::map_uri_to_worker, done
without a match
[jk_isapi_plugin.c (452)]: HttpFilterProc [/Ugo/Elenco.jsp] is not a servlet
url
[jk_isapi_plugin.c (461)]: HttpFilterProc check if [/Ugo/Elenco.jsp] is
points to the web-inf directory


----- Original Message -----
From: "Krieg Steffen" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Wednesday, December 20, 2000 2:28 PM
Subject: AW: Tomcat and IIS 5.0 An example


You have to write the following in the uriworkermap.properties:
/Ugo/*.jsp=ajp12
/Ugo/servlet/*=ajp12

The first is for the JSP's and the second for the servlets.

-----Ursprüngliche Nachricht-----
Von: Lorenzo Soncini [mailto:[EMAIL PROTECTED]]
Gesendet: Mittwoch, 20. Dezember 2000 13:01
An: [EMAIL PROTECTED]
Betreff: Fw: Tomcat and IIS 5.0 An example


Here the problem
If I make a call
 http://ls234/Ugo/Elenco.jsp
The server ignore the JSP tags and return the file as an STATIC HTML FILE,
but if I call the same file with
http://ls234:8080/Ugo/Elenco.jsp
all work fine, the JSp call my beeans and its work!

Lorenzo
----- Original Message -----
From: "Lorenzo Soncini" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Wednesday, December 20, 2000 12:47 PM
Subject: Re: Tomcat and IIS 5.0


This is my configuration
D:\Tomcat\Webapps\MyApp\ with inside JSP and servlet
C:\InetPub\wwwroot\    with inside the WEB Site (HTML,ASP,......)

I need that:
If I call http://server/myapp/*.* respond the tomcat for jsp and
servlet...and IIS for ASP and Static.
if I call any other adress..respond my IIS.

Thanks
----- Original Message -----
From: "Krieg Steffen" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Wednesday, December 20, 2000 12:33 PM
Subject: AW: Tomcat and IIS 5.0


And what is your problem?
It works fine on my machine ...

-----Ursprüngliche Nachricht-----
Von: Lorenzo Soncini [mailto:[EMAIL PROTECTED]]
Gesendet: Mittwoch, 20. Dezember 2000 10:47
An: [EMAIL PROTECTED]
Betreff: Tomcat and IIS 5.0


Hi folks.
I have installed the Tomcat 3.2 on Windows 2000 and JDK 1.3 + 1.2EE. I need
to integrate Tomcat with IIS 5 so I can use Servlet and JSP on my sites.

Thanks
Lorenzo Soncini


Reply via email to