Re: Do not understand tomcat-apache autoconfiguration

2003-03-20 Thread Bill Barker
If it wasn't deprecated, I'd probably go back and add a 3.3-style all-in directive to the 4.x auto-config. In the mean-time go back and read http://jakarta.apache.org/tomcat/tomcat-4.1-doc/config/jk.html#Using%20Apach eConfig. Vincent Panel [EMAIL PROTECTED] wrote in message news:[EMAIL

Re: Do not understand tomcat-apache autoconfiguration

2003-03-20 Thread Vincent Panel
Well, thanks, but I've already read this. It is not really explaining WHERE are supposed to be those Listeners that turn tomcat ApacheConfig on. When you read the doc, it seems that you're supposed to put one listener inside the Server tag and another one inside each Context tag (remember I do

Re: Do not understand tomcat-apache autoconfiguration

2003-03-20 Thread Jacob Kjome
Close. One inside the Server tag and one inside each Host tag that you want autogenerated. Here's mine... Server Listener className=org.apache.ajp.tomcat4.config.ApacheConfig modJk=mod_jk.dll jkDebug=info / ... ... ... Host ... Listener

Re: Do not understand tomcat-apache autoconfiguration

2003-03-20 Thread Vincent Panel
OK, thanks But it generates Virutalhost directives and inside, there's only JkMount's, no Directory, no Alias, right ? What I really need (and I'm pretty sure I'm not the only one) is something like this (for each of my contexts) : # # The following line makes apache aware of the location of

Re: Do not understand tomcat-apache autoconfiguration

2003-03-20 Thread John Turner
Here's an example of exactly what it creates: http://www.johnturner.com/howto/mod_jk_conf.html John On 20 Mar 2003 16:06:41 +0100, Vincent Panel [EMAIL PROTECTED] wrote: OK, thanks But it generates Virutalhost directives and inside, there's only JkMount's, no Directory, no Alias, right ? What

RE: Do not understand tomcat-apache autoconfiguration. To John Turner.

2003-03-20 Thread Victor Gonzalez
[mailto:[EMAIL PROTECTED] Sent: Thursday, March 20, 2003 9:12 AM To: Tomcat Users List Subject: Re: Do not understand tomcat-apache autoconfiguration Here's an example of exactly what it creates: http://www.johnturner.com/howto/mod_jk_conf.html John On 20 Mar 2003 16:06:41 +0100, Vincent Panel

Re: Do not understand tomcat-apache autoconfiguration

2003-03-20 Thread Jacob Kjome
Well, you could try it and see. Here is what is generated for me (attached)... Jake At 04:06 PM 3/20/2003 +0100, you wrote: OK, thanks But it generates Virutalhost directives and inside, there's only JkMount's, no Directory, no Alias, right ? What I really need (and I'm pretty sure I'm not the

Re: Do not understand tomcat-apache autoconfiguration. To John Turner.

2003-03-20 Thread John Turner
these connections?? Or a link? Tnks, Regards, Victor González *** -Original Message- From: John Turner [mailto:[EMAIL PROTECTED] Sent: Thursday, March 20, 2003 9:12 AM To: Tomcat Users List Subject: Re: Do not understand tomcat-apache autoconfiguration Here's an example of exactly

RE: Do not understand tomcat-apache autoconfiguration. To John Turner.

2003-03-20 Thread Victor Gonzalez
And a how-to with SQL Server?? -Original Message- From: John Turner [mailto:[EMAIL PROTECTED] Sent: Thursday, March 20, 2003 10:04 AM To: Tomcat Users List Subject: Re: Do not understand tomcat-apache autoconfiguration. To John Turner. Sorry, I don't use IIS for web servers. John

Re: Do not understand tomcat-apache autoconfiguration

2003-03-20 Thread Vincent Panel
OK, thanks. It still seems impossible to avoid this virtualhosting feature if you do not want it. Moreover, after setting exacly the same parameters than (both of) you, these three lines do not appear in my mod_jk.conf : JkWorkersFile

Re: Do not understand tomcat-apache autoconfiguration

2003-03-20 Thread John Turner
Sorry, I looked back in the thread, but I'm not clear what the problem is. The example mod_jk.conf file clearly has a virtual host for each Host, and a Directory and Alias container for each Context. This is demonstrated by the fact that /manager and /admin are dynamic Contexts, but have a

Re: Do not understand tomcat-apache autoconfiguration. To John Turner.

2003-03-20 Thread John Turner
:[EMAIL PROTECTED] Sent: Thursday, March 20, 2003 10:04 AM To: Tomcat Users List Subject: Re: Do not understand tomcat-apache autoconfiguration. To John Turner. Sorry, I don't use IIS for web servers. John On Thu, 20 Mar 2003 09:46:53 -0600, Victor Gonzalez [EMAIL PROTECTED] wrote: It for me

Do not understand tomcat-apache autoconfiguration

2003-03-19 Thread Vincent Panel
Hi ! I've set up tomcat 1.4.1 and apache 1.3 to work together via autoconfiguration (generating a mod_jk.conf file). Here is the beginning of my server.xml file : Server port=8005 shutdown=SHUTDOWN debug=0 !-- Autoconfiguration of Apache - vpanel see