RE: Having a problem with IIS and Tomcat 4.1.24 config (solved)

2003-07-04 Thread Timothée Pourbaix
Hello Jeff, I read carrefully the post about your problem and I'm happy that it's solved. In fact, you just applied another configuration (jk2) between Tomcat and IIS and did not solved your initial config. So, for your info, here is how to solve it: You missed to create the Virtual Directory in

RE: Having a problem with IIS and Tomcat 4.1.24 config

2003-06-11 Thread David Legg
Jeff, I downloaded the JK2 binary from: - http://jakarta.apache.org/builds/jakarta-tomcat-connectors/jk2/release/v2.0. 2/bin/win32/ and installed it from the JK2 quick start guide at: - http://jakarta.apache.org/builds/jakarta-tomcat-connectors/jk2/doc/jk2/confi ghowto.html However, the

RE: Having a problem with IIS and Tomcat 4.1.24 config (solved)

2003-06-11 Thread Jeff Cummings
Thanks to all. I got things working. I created the registry entries as set out by http://jakarta.apache.org/builds/jakarta-tomcat-connectors/jk2/doc/jk2/insta llhowto.html . Thanks again. Jeff -Original Message- From: Jeff Cummings [mailto:[EMAIL PROTECTED] Sent: Tuesday, June 10, 2003

Re: Having a problem with IIS and Tomcat 4.1.24 config

2003-06-10 Thread Dominic Parry
Hi Jeff Those lines belong in workers.properties not uriworkermap.properties You can point it to the logs folder, but it's more of a virtual memory file. It is necessary though, to get tomcat to work with IIS, I have found. Good luck! - Original Message - From: Jeffrey Cummings

RE: Having a problem with IIS and Tomcat 4.1.24 config

2003-06-10 Thread David Legg
Hi Jeff, What you need to be aware of (and this took a while to sink in for me) is there are at least two different connectors out there; JK1 and JK2. Each has a different set of files associated with it and the formats are different too. JK1 used the following files: -

RE: Having a problem with IIS and Tomcat 4.1.24 config

2003-06-10 Thread Jeff Cummings
Thanks Dav, That being said - where do I get isapi_redirector2.dll, documentation and examples of jk2.properties workers2.properties files. Jeff -Original Message- From: David Legg [mailto:[EMAIL PROTECTED] Sent: Tuesday, June 10, 2003 4:42 AM To: 'Tomcat Users List' Subject: RE:

Re: Having a problem with IIS and Tomcat 4.1.24 config

2003-06-09 Thread John Turner
I don't use IIS, but: [Sat Jun 07 09:18:40 2003] [jk_uri_worker_map.c (477)]: Attempting to map URI '/localhost/tomcat/isapi_redirect.dll' [Sat Jun 07 09:18:40 2003] [jk_uri_worker_map.c (599)]: jk_uri_worker_map_t::map_uri_to_worker, done without a match Looks to me like one of your

RE: Having a problem with IIS and Tomcat 4.1.24 config

2003-06-09 Thread Jeffrey Cummings
Thanks for the help. There is the information request My worker.propqerties file is: - worker.list=ajp13 worker.ajp13.port=8009 worker.ajp13.host=localhost worker.ajp13.type=ajp13 my uriworkermap.properties file is:- /servlet/*=ajp13 /examples/*=ajp13 /examples/*.jsp=ajp13

Re: Having a problem with IIS and Tomcat 4.1.24 config

2003-06-09 Thread John Turner
Thanks. Did you install the filter? AFAIK, this is the best tutorial on Tomcat + IIS: http://www.onjava.com/pub/a/onjava/2002/12/18/tomcat.html John On Mon, 9 Jun 2003 08:42:40 -0400, Jeffrey Cummings [EMAIL PROTECTED] wrote: Thanks for the help. There is the information request My

RE: Having a problem with IIS and Tomcat 4.1.24 config

2003-06-09 Thread Jeffrey Cummings
Yes I did install the filter and it does have the green arrow. This as the log file, mod_jk_iis.log when I start IIS [jk_uri_worker_map.c (156)]: Into jk_uri_worker_map_t::uri_worker_map_alloc [jk_uri_worker_map.c (196)]: Into jk_uri_worker_map_t::uri_worker_map_open [jk_uri_worker_map.c (211)]:

Re: Having a problem with IIS and Tomcat 4.1.24 config

2003-06-09 Thread John Turner
Sorry, I'm stumped, and I don't use IIS enough (hardly at all) to help out with nitty gritty stuff. Hopefully someone else has more insight. John On Mon, 9 Jun 2003 10:43:27 -0400, Jeffrey Cummings [EMAIL PROTECTED] wrote: Yes I did install the filter and it does have the green arrow. This as

Re: Having a problem with IIS and Tomcat 4.1.24 config

2003-06-09 Thread Dominic Parry
you need to specify your uri's in workers.properties - Original Message - From: John Turner To: Tomcat Users List Sent: Monday, June 09, 2003 6:13 PM Subject: Re: Having a problem with IIS and Tomcat 4.1.24 config Sorry, I'm stumped, and I don't use IIS enough (hardly at

Re: Having a problem with IIS and Tomcat 4.1.24 config

2003-06-09 Thread John Turner
I'm pretty sure Jeffrey did...at least as far as I can tell. Do you have some examples of the correct way? John On Mon, 9 Jun 2003 18:16:49 +0200, Dominic Parry [EMAIL PROTECTED] wrote: you need to specify your uri's in workers.properties - Original Message - From: John Turner To:

Re: Having a problem with IIS and Tomcat 4.1.24 config

2003-06-09 Thread Dominic Parry
Hi Sure can, here is an examples of mine: # Define the communication channel [shm] file=C:\Program Files\Apache Group\Tomcat 4.1\logs\shm.file size=1048576 [channel.socket:127.0.0.1:8009] info=Ajp13 forwarding over socket tomcatId=localhost:8009 # Map the Tomcat examples webapp to the Web

Re: Having a problem with IIS and Tomcat 4.1.24 config

2003-06-09 Thread John Turner
Thanks! Jeffrey, does this help? John On Mon, 9 Jun 2003 19:51:39 +0200, Dominic Parry [EMAIL PROTECTED] wrote: Hi Sure can, here is an examples of mine: # Define the communication channel [shm] file=C:\Program Files\Apache Group\Tomcat 4.1\logs\shm.file size=1048576

RE: Having a problem with IIS and Tomcat 4.1.24 config

2003-06-09 Thread Jeffrey Cummings
Excuse my ignorance, but I am not sure which file these lines belong to. Is it the uriworkermap.properties file? What is shm.file a log file? Could I have the file parameter point to C:\Jakarta-4.1.24\logs\shm.file since all my log files are in that directory? Jeff -Original Message-

Having a problem with IIS and Tomcat 4.1.24 config

2003-06-07 Thread Jeffrey Cummings
I am trying to setup tomcat 4.1.24 with IIS. I get the following message HTTP Status 404 - /tomcat/isapi_redirect.dll _ type Status report message /tomcat/isapi_redirect.dll description The requested resource (/tomcat/isapi_redirect.dll) is not available. _ Apache Tomcat/4.1.24

Having a problem with IIS and Tomcat 4.1.24 config

2003-06-07 Thread Jeffrey Cummings
I am trying to setup tomcat 4.1.24 with IIS. I get the following message HTTP Status 404 - /tomcat/isapi_redirect.dll _ type Status report message /tomcat/isapi_redirect.dll description The requested resource (/tomcat/isapi_redirect.dll) is not available. _ Apache Tomcat/4.1.24