RE: jsps and servlets don't work

2002-12-18 Thread Turner, John
and servlets don't work How can I patch if I can't even figure out how to set it up? Tomat and mod_jk are very poorly documented. I'm not even sure where the source to the autogenerator is. Turner, John wrote: Maybe so. Seems pretty straightforward to me. I'm sure the dev team would

Re: jsps and servlets don't work

2002-12-18 Thread Joseph Shraibman
tradeoffs. John -Original Message- From: Joseph Shraibman [mailto:[EMAIL PROTECTED]] Sent: Monday, December 16, 2002 7:36 PM To: Tomcat Users List Subject: Re: jsps and servlets don't work Turner, John wrote: Check the last error message: wc_get_worker_for_name ajp13. Your

[off-topic] Re: jsps and servlets don't work

2002-12-18 Thread Jerry Ford
, December 18, 2002 3:02 PM To: Tomcat Users List Subject: Re: jsps and servlets don't work How can I patch if I can't even figure out how to set it up? Tomat and mod_jk are very poorly documented. I'm not even sure where the source to the autogenerator is. Turner, John wrote: Maybe so

RE: [off-topic] Re: jsps and servlets don't work

2002-12-18 Thread Turner, John
constraints or other requirements. The connectors and the issues that come with them are here to stay, I think. John -Original Message- From: Jerry Ford [mailto:[EMAIL PROTECTED]] Sent: Wednesday, December 18, 2002 5:09 PM To: Tomcat Users List Subject: [off-topic] Re: jsps and servlets

Re: jsps and servlets don't work

2002-12-17 Thread Joseph Shraibman
-Original Message- From: Joseph Shraibman [mailto:[EMAIL PROTECTED]] Sent: Monday, December 16, 2002 7:36 PM To: Tomcat Users List Subject: Re: jsps and servlets don't work Turner, John wrote: Check the last error message: wc_get_worker_for_name ajp13. Your workers.properties file has a worker

RE: jsps and servlets don't work

2002-12-17 Thread Turner, John
[mailto:[EMAIL PROTECTED]] Sent: Tuesday, December 17, 2002 7:22 PM To: Tomcat Users List Subject: Re: jsps and servlets don't work Then at least it should put into the generated config file a comment that ajp13 should be converted into the name of the worker. Turner, John wrote: AFAIK, no. I

RE: jsps and servlets don't work

2002-12-16 Thread Turner, John
List Cc: [EMAIL PROTECTED] Subject: Re: jsps and servlets don't work I have from my auto generated file: d1.selectacast.net:/examples # Static files Alias /examples /local/jakarta-tomcat-4.1.12-LE-jdk14/webapps/examples

Re: jsps and servlets don't work

2002-12-16 Thread Joseph Shraibman
Turner, John wrote: You need JkMounts for every URL you intend to send to Tomcat. Most people use the default wildcards: JkMount /*.jsp ajp13 JkMount /servlet/* ajp13 I'm getting the static content from examples, so obviously all of /examples/ is mounted. And I added extra JkMount directives

RE: jsps and servlets don't work

2002-12-16 Thread Turner, John
-Original Message- From: Joseph Shraibman [mailto:[EMAIL PROTECTED]] Sent: Monday, December 16, 2002 6:35 PM To: Tomcat Users List Subject: Re: jsps and servlets don't work OK I got the autogenerated conf file to have the jkmounts in it (don't know why it didn't work before), but now

Re: jsps and servlets don't work

2002-12-16 Thread Joseph Shraibman
OK I got the autogenerated conf file to have the jkmounts in it (don't know why it didn't work before), but now whenever I go to a jsp or servlet I get a ServerError. In my mod_jk.log I get (my loglevel is debug): [Mon Dec 16 18:30:47 2002] [jk_uri_worker_map.c (460)]: Into

RE: jsps and servlets don't work

2002-12-16 Thread Turner, John
and servlets don't work Turner, John wrote: Check the last error message: wc_get_worker_for_name ajp13. Your workers.properties file has a worker called test1 but the worker being sought is ajp13. If your JkMount commands look like this: JkMount /*.jsp ajp13 Then change the worker name

Re: jsps and servlets don't work

2002-12-16 Thread Joseph Shraibman
Turner, John wrote: Check the last error message: wc_get_worker_for_name ajp13. Your workers.properties file has a worker called test1 but the worker being sought is ajp13. If your JkMount commands look like this: JkMount /*.jsp ajp13 Then change the worker name in workers.properties to

Re: jsps and servlets don't work

2002-12-13 Thread jks
I have from my auto generated file: d1.selectacast.net:/examples # Static files Alias /examples /local/jakarta-tomcat-4.1.12-LE-jdk14/webapps/examples Directory /local/jakarta-tomcat-4.1.12-LE-jdk14/webapps/examples Options

Re: jsps and servlets don't work

2002-12-12 Thread jmong
Check to make sure that you have your mime types all working Location /examples JkMount /*.jsp ajp13 JkMount /servlet/* ajp13 /Location In ${CATALINA_HOME}/conf there should be (or at least there used to be) a file that you can just include in apache that defines these types of declarations. I