RE: Apache + Tomcat multiple instances

2002-09-05 Thread Turner, John
What was your reasoning for needing two instances? Are the configurations between the two instances very different? You can easily have multiple web applications under one tomcat instance...each with it's own configuration. I wouldn't run two distinct instances of tomcat unless there was a

RE: virtual hosts and apache

2002-09-05 Thread Turner, John
Hosts are configured in the Host element of server.xml. For demonstration purposes, the Host element with the name localhost in server.xml is a virtual host. Copy all of that, and change the name parameter in the Host element to match Apache's VirtualHost. John -Original Message-

RE: Apache Tomcat SSL

2002-09-05 Thread Turner, John
I just tried https://luna.draft.de/hvb-immoplus and it worked perfectly (8:59AM EST, USA). It redirected me to https://luna.draft.de/hvb-immoplus/index.jsp which looks like exactly what it should do. John -Original Message- From: Bernhard Blasen [mailto:[EMAIL PROTECTED]] Sent:

RE: Tomcat/4.0.4 - HTTP Status 404 error

2002-09-05 Thread Turner, John
You don't have to change the URL to the DTD in your web.xml. If my memory is correct, Tomcat handles not having Internet access for the DTD just fine by default. The error you are getting is Can't find config file, so what I would do is put the DTD URL back to what the default is, and see if

RE: Tomcat/4.0.4 - HTTP Status 404 error

2002-09-05 Thread Turner, John
See my previous reply. John -Original Message- From: Anand Parikh [mailto:[EMAIL PROTECTED]] Sent: Thursday, September 05, 2002 9:07 AM To: [EMAIL PROTECTED] Subject: Tomcat/4.0.4 - HTTP Status 404 error Running tomcat 4.0.4, JDK1.3, Debian Linux 2.2.6. I can start up

RE: Error Page Definition

2002-09-05 Thread Turner, John
an URL with a specification what directives can be put into web.xml? I couldn't find something like that on the jakarta documentation website. Ciao, Branko. Am Donnerstag, 5. September 2002 14:52 schrieb Turner, John: Check out the error-page element of web.xml

RE: Libtool Error!!!- mod_jk

2002-09-05 Thread Turner, John
If you know that much about libtool, you should be able to fix your own libtool errors!! LOL Just kidding. John -Original Message- From: Manoj Kithany [mailto:[EMAIL PROTECTED]] Sent: Thursday, September 05, 2002 9:27 AM To: [EMAIL PROTECTED]; [EMAIL PROTECTED] Subject: Re:

RE: Apache Tomcat

2002-09-05 Thread Turner, John
Agreed. John -Original Message- From: Milt Epstein [mailto:[EMAIL PROTECTED]] Sent: Thursday, September 05, 2002 10:03 AM To: Tomcat Users List Subject: RE: Apache Tomcat On Thu, 5 Sep 2002, Turner, John wrote: The connectors serve as a pipeline from Apache to Tomcat

RE: apache + tomcat 4.0.1 + virtual host

2002-09-05 Thread Turner, John
Each virtual host gets a Host element/container in server.xml. In that Host element, create a Context for the path. For example, in a default Tomcat install: Host name=localhost appBase=webapps Context path=/examples docBase=examples So in your case: Host name=www.domain2.com

RE: apache + tomcat 4.0.1 + virtual host

2002-09-05 Thread Turner, John
I forgot to mention that you will have to configure your Apache connector for that new host name, but it looks like you are using mod_webapp, and I am not familiar with it. John -Original Message- From: Turner, John [mailto:[EMAIL PROTECTED]] Sent: Thursday, September 05, 2002 11:30

RE: SSL

2002-09-06 Thread Turner, John
saying that is a security concern or something? What is the reason I would not want to run Tomcat as root? I appreciate your response. BTW - I have root access as this is my own dedicated server. :) Thanks. Neal -Original Message- From: Turner, John [mailto:[EMAIL

RE: Apache2 and Tomcat4 or different machines...

2002-09-06 Thread Turner, John
You don't, as far as I know. You will need mod_jk.conf on the Apache box. In addition, you will need to change the host value in workers.properties to point to the FQDN of the machine hosting Tomcat. I guess you could always set up some sort of NFS share, and share out a location on the Tomcat

RE: mod_jk.conf file is not created

2002-09-06 Thread Turner, John
Right. That line simply sets up a Connector. Auto-generation of a mod_jk.conf file is handled by a Listener element in server.xml (or in this case tomcat4-service.xml, I think). Manoj, this is explained in the docs: http://jakarta.apache.org/tomcat/tomcat-4.0-doc/config/ajp.html Look for

RE: configuring 4.0.4 with Apache 2.0.40 (mod_jk)

2002-09-06 Thread Turner, John
As an aside, the delays you've been experiencing integrating Apache with Tomcat are related to your OS (AIX) and the connectors' build scripts not being AIX-friendly, not to either Apache or Tomcat. Integrating Apache with Tomcat with either mod_jk or mod_webapp is actually quite simple, and

RE: configuring 4.0.4 with Apache 2.0.40 (mod_jk)

2002-09-06 Thread Turner, John
See Peter's reply for the answer to your AddModule error. I just wanted to point out that Apache 2.0.39/40 and Tomcat 4.x is a known-working configuration with mod_jk, on all sorts of UNIX variants including Solaris 7 and 8. Also, you want to put your mod_jk.so in $APACHE_HOME/modules, not

RE: Starting and stopping Tomcat as non-root

2002-09-06 Thread Turner, John
Wow. Not to start a debate, but that's the silliest statement I've seen in awhile. If you don't like how it works, change it. You have the source. John -Original Message- From: Joe Tomcat [mailto:[EMAIL PROTECTED]] Sent: Friday, September 06, 2002 1:39 AM To: Tomcat Users List

RE: Starting and stopping Tomcat as non-root

2002-09-06 Thread Turner, John
I agree, it would be an interesting project. I don't think the startup and shutdown scripts would be affected all that much at all. I'm running all of my Tomcat instances as a non-root user. As long as the directory permissions (work directory, etc) are OK, there shouldn't be any issues

RE: Apache 2.0 and Tomcat 4.0.4 - Compiling mod_jk problem

2002-09-06 Thread Turner, John
Cool error! Which build process are you doing? I don't have a build-unix.sh in my dir tree. On a Linux (I use RH), you should be able to simply do the following: - change to /path/to/connector-src/jk/native - run buildconf.sh - run ./configure --with-apxs=/some/path/to/apache2/bin/apxs

RE: Configuring HTTP Connector

2002-09-06 Thread Turner, John
The HTTP connector is for Tomcat to run in stand-alone mode. It's called a Connector, but the things it is connecting are Tomcat and the client browser, not Tomcat and Apache (or IIS). So in your scenario, you won't use Tomcat's HTTP connector. For a doc on IIS and Tomcat 4, check here:

RE: connecting tomcat to apache (newbie)

2002-09-06 Thread Turner, John
Which OS? Search the archives, this comes up several times a day. John -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Friday, September 06, 2002 12:35 AM To: [EMAIL PROTECTED] Subject: connecting tomcat to apache (newbie) Hey there; I'd

RE: configuring 4.0.4 with Apache 2.0.40 (mod_jk)

2002-09-06 Thread Turner, John
, September 06, 2002 10:22 AM To: Tomcat Users List Subject: RE: configuring 4.0.4 with Apache 2.0.40 (mod_jk) On Fri, 6 Sep 2002, Turner, John wrote: As an aside, the delays you've been experiencing integrating Apache with Tomcat are related to your OS (AIX) and the connectors' build

RE: configuring 4.0.4 with Apache 2.0.40 (mod_jk)

2002-09-06 Thread Turner, John
' Subject: RE: configuring 4.0.4 with Apache 2.0.40 (mod_jk) On the same subject, if you need the binary for mod_jk for Solaris 8 platform, let me know and I'll send you. Kishor -Original Message- From: Turner, John [mailto:[EMAIL PROTECTED]] Sent: Friday, September 06, 2002 10:25 AM

RE: Start Tomcat from Script

2002-09-06 Thread Turner, John
As previously posted, check the permissions on the Tomcat work directory. John -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Friday, September 06, 2002 10:39 AM To: [EMAIL PROTECTED] Subject: Start Tomcat from Script Hello List I have a

RE: Apache 2.0 and Tomcat 4.0.4 - Compiling mod_jk problem

2002-09-06 Thread Turner, John
to `apr_psprintf' ... Then a heap of 'undefined reference' error lines. Thank if you can help ! :) -- Claude Coiffier -TEAMLOG +33(0)4 76 61 36 48 -Message d'origine- De : Turner, John [mailto:[EMAIL PROTECTED]] Envoyé : vendredi 6

RE: how to uninstall Apache?

2002-09-06 Thread Turner, John
Depends on the ports. You can have as many Apaches running as you have available ports. If you only want to use port 80, you can only have one Apache running at a time. There's no need to install Apache #1 to run Apache #2 on port 80...just don't start Apache #1 and instead start Apache #2.

RE: how to uninstall Apache?

2002-09-06 Thread Turner, John
11:08 AM To: Tomcat Users List Subject: RE: how to uninstall Apache? If you have installed Apache to run as a service, it's better to remove the Apache service before uninstall. -Message d'origine- De : Turner, John [mailto:[EMAIL PROTECTED]] Envoyé : vendredi 6 septembre 2002

RE: how to uninstall Apache?

2002-09-06 Thread Turner, John
if I have apache 2 and now you say about Apache Service - kindly clarify!!! THANKS! From: Turner, John [EMAIL PROTECTED] Reply-To: Tomcat Users List [EMAIL PROTECTED] To: 'Tomcat Users List' [EMAIL PROTECTED] Subject: RE: how to uninstall Apache? Date: Fri, 6 Sep 2002 11:05:58 -0400

RE: How to make apache work both for https

2002-09-06 Thread Turner, John
http://www.modssl.org/docs/2.8/ Apache 2 has mod_ssl built in, I believe. John -Original Message- From: Raj Mettai [mailto:[EMAIL PROTECTED]] Sent: Friday, September 06, 2002 12:02 PM To: [EMAIL PROTECTED] Subject: How to make apache work both for https Hi all, I have

RE: tomcat 4.1.0

2002-09-06 Thread Turner, John
Any. John -Original Message- From: Dionisio Ruiz de Zarate [mailto:[EMAIL PROTECTED]] Sent: Friday, September 06, 2002 12:06 PM To: Tomcat Users List Subject: tomcat 4.1.0 the new tomcat 4.1.0 what uses? the mod_jk or the mod_webapps? (linux) thanks -- To

RE: Url Mapping with mod_jk

2002-09-06 Thread Turner, John
Actually, posting your mod_jk.conf file would be of more help...that's where the JkMount directives that aren't working should be. You have the Listener elements (*.ApacheConfig) in your server.xml. There's no need to have anything in httpd.conf except: Include

RE: Tomcat 4.0.4 and Apache 2.0.4 integration

2002-09-06 Thread Turner, John
If you were using mod_jk, it's essentially the same. If you are getting error messages, or not seeing the results you expect, or have questions about specific changes, can you post those? That will help us help you. John -Original Message- From: Ravindra K. Bhat [mailto:[EMAIL

RE: Tomcat 4.0.4 and Apache 2.0.4 integration

2002-09-06 Thread Turner, John
mod_jk.dll is here: http://www.acg-gmbh.de/mod_jk/ Even includes versions for 4.1.10 John -Original Message- From: Blackmore, John [mailto:[EMAIL PROTECTED]] Sent: Friday, September 06, 2002 2:52 PM To: 'Tomcat Users List' Subject: RE: Tomcat 4.0.4 and Apache 2.0.4 integration

New HOWTOs posted

2002-09-06 Thread Turner, John
Hello all - I've posted two new HOWTOs today, and have updated my earlier HOWTO. You can reach the HOWTOs that are available now here: http://www.johnturner.com/howto The updated HOWTO is the Apache 1.3.26/Tomcat 4.0.4 w/ mod_jk HOWTO. I added an alternate method of building mod_jk (much

RE: Tomcat shutdown security

2002-09-06 Thread Turner, John
Very interesting. I hadn't investigated this scenario until now. I like your suggestion. John -Original Message- From: Przemyslaw Wegrzyn [mailto:[EMAIL PROTECTED]] Sent: Friday, September 06, 2002 2:20 PM To: Tomcat Users List Subject: RE: Tomcat shutdown security On

RE: new tomcat 4.1.0, linux and mod_webapp

2002-09-06 Thread Turner, John
The instructions are in README.txt in this directory: /some/path/to/jakarta-tomcat-connectors-4.0.4-src/webapp John -Original Message- From: Dionisio Ruiz de Zarate [mailto:[EMAIL PROTECTED]] Sent: Friday, September 06, 2002 3:11 PM To: [EMAIL PROTECTED] Subject: new tomcat 4.1.0,

RE: integeration of Apache with TOCAAT

2002-09-06 Thread Turner, John
http://www.johnturner.com/howto For Redhat, but SuSE shouldn't be that much different. John Turner [EMAIL PROTECTED] -Original Message- From: Sivaraman, Srinivasan [mailto:[EMAIL PROTECTED]] Sent: Friday, September 06, 2002 3:31 PM To: [EMAIL PROTECTED] Subject: integeration of

RE: Apache 2.0.40 with DSO???

2002-09-06 Thread Turner, John
RTFM ./configure --prefix=/usr/local/apache --enable-module=so To check for DSO: /usr/local/apache/bin/httpd -l and look for mod_so.c. John -Original Message- From: Manoj Kithany [mailto:[EMAIL PROTECTED]] Sent: Friday, September 06, 2002 3:30 PM To: [EMAIL PROTECTED] Cc:

RE: How to set tomcat to use port 80...

2002-09-08 Thread Turner, John
Reason number #1 I don't like RPMs...you never know for sure what they are doing. John -Original Message- From: Keith Pemberton To: Turner, John Cc: [EMAIL PROTECTED] Sent: 9/8/02 12:07 AM Subject: RE: How to set tomcat to use port 80... tomcat4 run is a script file that I can run

RE: Tomcat standalone Versus Apache

2002-09-09 Thread Turner, John
-Original Message- From: Vikramjit Singh [mailto:[EMAIL PROTECTED]] Sent: Monday, September 09, 2002 4:56 AM To: 'Tomcat Users List' Subject: RE: Tomcat standalone Versus Apache layer of code to go through before you hit them. Adding Apache to the mix also makes life a whole lot

RE: [OT] Linux environment variables

2002-09-09 Thread Turner, John
Depends on which shell you are using. For sh, it would be USER_HOME/.profile. For bash it would be USER_HOME/.bash_profile (or even .profile if .bash_profile doesn't exist). tcsh is USER_HOME/.login, I believe, though I use sh or bash, so I can't be sure. A search on Google should help you

RE: Url Mapping with mod_jk

2002-09-09 Thread Turner, John
, Anthony. -Original Message- From: Turner, John [SMTP:[EMAIL PROTECTED]] Sent: 06 September 2002 17:19 To: 'Tomcat Users List' Subject:RE: Url Mapping with mod_jk Actually, posting your mod_jk.conf file would be of more help...that's where

RE: SSL Connectors

2002-09-09 Thread Turner, John
I can't speak to your SSL question, but there's no way to predict Tomcat 5. Tomcat is developed Apache-style...that is, each version is voted on by the community, and only when the consensus says it is ready for release is it released. It could be 3 months, it could be 3 years. There is no

RE: apache 2.0 and tomcat 4.1.7 integration problem

2002-09-09 Thread Turner, John
The mod_jk.dll is Apache-version sensitive. When you say Apache 2.0 beta what does that mean? The only mod_jk.dll files I am aware of are for 2.0.39 and 2.0.40, and neither of those are beta. Also, I would upgrade your Tomcat to 4.1.10. There were all sorts of fixes between 4.1.7 and 4.1.9+.

RE: mod_jk.so where from ??

2002-09-09 Thread Turner, John
My website by the end of the week. Other than that, no. Everyone has been building them from source. John -Original Message- From: Adar Wesley [mailto:[EMAIL PROTECTED]] Sent: Monday, September 09, 2002 2:21 AM To: 'Tomcat Users List' Subject: mod_jk.so where from ?? Hi

RE: mod_jk.so where from ??

2002-09-09 Thread Turner, John
: mod_jk.so where from ?? 10x John ! and where would that web site be ? Tal -Original Message- From: Turner, John [mailto:[EMAIL PROTECTED]] Sent: Monday, September 09, 2002 2:45 PM To: 'Tomcat Users List' Subject: RE: mod_jk.so where from ?? My website by the end

RE: mod_jk.so where from ??

2002-09-09 Thread Turner, John
-Original Message- From: Turner, John [mailto:[EMAIL PROTECTED]] Sent: Monday, September 09, 2002 2:45 PM To: 'Tomcat Users List' Subject: RE: mod_jk.so where from ?? My website by the end of the week. Other than that, no. Everyone has been building them from source

RE: tomcat-4.0.4/Apache-1.3.26 and mod_jk

2002-09-09 Thread Turner, John
Can you post your mod_jk.conf file? John -Original Message- From: damar thapa [mailto:[EMAIL PROTECTED]] Sent: Monday, September 09, 2002 7:14 PM To: Tomcat Users List Subject: tomcat-4.0.4/Apache-1.3.26 and mod_jk Hi, I followed John Turner's Apache1.3.26 version of

RE: How to make apache work both for https

2002-09-09 Thread Turner, John
http://www.modssl.org/docs/2.8/ssl_faq.html#ToC28 http://slacksite.com/apache/certificate.html Google is your friend. John -Original Message- From: Raj Mettai [mailto:[EMAIL PROTECTED]] Sent: Monday, September 09, 2002 11:01 AM To: [EMAIL PROTECTED] Subject: RE: How to make

RE: Apache 2.0.40, mod_jk core dump on AIX

2002-09-09 Thread Turner, John
What if you add an additional parameter to your configure command? ./configure --with-apxs=/www/apache2/bin/apxs --with-java-home=${JAVA_HOME} It was suggested to me that the JAVA_HOME part was needed...I would be interested to know if it works without that part. John -Original

RE: How can I connect Apache 2.40 with Tomcat 4.1.10 on Windows 2000?

2002-09-09 Thread Turner, John
Robert Sowders created a HOWTO: ftp://pokey.wr.usgs.gov/pub/rsowders/Apache2_Win2k_TC4.1.10_JSDK1.4.zip John -Original Message- From: Alexander Schmidt [mailto:[EMAIL PROTECTED]] Sent: Monday, September 09, 2002 10:49 AM To: Tomcat Users List Subject: How can I connect Apache

RE: New HOWTOs posted

2002-09-09 Thread Turner, John
: no warranties expressed or implied that any of these files will work for you in your environment. Use them at your own risk! http://www.johnturner.com/howto John Turner [EMAIL PROTECTED] -Original Message- From: Turner, John [mailto:[EMAIL PROTECTED]] Sent: Friday, September 06, 2002 3:02 PM

RE: New HOWTOs posted

2002-09-09 Thread Turner, John
Try the non-LE version of Tomcat. John -Original Message- From: Giorgio Ponza [mailto:[EMAIL PROTECTED]] Sent: Monday, September 09, 2002 1:28 PM To: Tomcat Users List Subject: Re: New HOWTOs posted Thanx for the HOWTO. I tried to follow the instructions to setup Apache

RE: New HOWTOs posted

2002-09-09 Thread Turner, John
OK. That line in server.xml works, you'll have to take my word for it. If it's causing you grief, I would definitely look at using full Tomcat, not the LE version. In addition, you can verify that org.apache.ajp.tomcat4.Ajp13Connector exists in your Tomcat installation. My guess is, it

[OFF TOPIC] RE: How to make apache work both for https

2002-09-09 Thread Turner, John
mod_ssl is an Apache module, not a command line tool. OpenSSL is a command line tool, not an Apache module. mod_ssl is included in the Apache 2.0.40 source, it may or may not have been included with the Apache bundled by Sun. You'll have to determine that yourself, and in either case, you can

RE: help getting up and running

2002-09-09 Thread Turner, John
What are the error messages? What do the logs say? John -Original Message- From: Grant C. Peters [mailto:[EMAIL PROTECTED]] Sent: Monday, September 09, 2002 2:42 PM To: Tomcat Users List; Jacob Kjome Subject: help getting up and running I have uninstalled my working tomcat

RE: AIX Connector Woes

2002-09-09 Thread Turner, John
I don't have one for 5.1, but I have collected one for 4.3.3, thanks to Milt Epstein: http://www.johnturner.com/howto John -Original Message- From: Daniel Rinehart [mailto:[EMAIL PROTECTED]] Sent: Monday, September 09, 2002 3:52 PM To: [EMAIL PROTECTED] Subject: AIX Connector

RE: AJP 1.3 Connector fails to load on Tomcat 4.1.10

2002-09-09 Thread Turner, John
So JK (mod_jk) is incompatible with Tomcat 4.1.10? Or is there a configuration parameter that turns off the JMX features? John -Original Message- From: Remy Maucherat [mailto:[EMAIL PROTECTED]] Sent: Monday, September 09, 2002 4:09 PM To: Tomcat Users List Subject: Re: AJP 1.3

RE: AJP 1.3 Connector fails to load on Tomcat 4.1.10

2002-09-09 Thread Turner, John
probably wrong. John -Original Message- From: Remy Maucherat [mailto:[EMAIL PROTECTED]] Sent: Monday, September 09, 2002 4:16 PM To: Tomcat Users List Subject: Re: AJP 1.3 Connector fails to load on Tomcat 4.1.10 Turner, John wrote: So JK (mod_jk) is incompatible with Tomcat

RE: AIX Connector Woes

2002-09-09 Thread Turner, John
Sorry...I didn't have time to unpack the Encap package, so I wasn't sure if there was a version issue with Apache with that file. John -Original Message- From: Milt Epstein To: Tomcat Users List Sent: 9/9/02 4:49 PM Subject: RE: AIX Connector Woes On Mon, 9 Sep 2002, Turner, John

RE: AJP 1.3 Connector fails to load on Tomcat 4.1.10

2002-09-09 Thread Turner, John
1.3 Connector fails to load on Tomcat 4.1.10 On Mon, 9 Sep 2002, Turner, John wrote: OK. Hopefully docs are coming soon! I've always wondered what the heck the difference was between the Java side and the C side, obvious differences aside. I really want to understand how a .jar file can

RE: Rpm start up scripts.

2002-09-10 Thread Turner, John
Use the binary. I have RH 7.2 servers, and the binary install is absolutely, 100% painless. There's no need for an RPM. John -Original Message- From: Kwok Peng Tuck [mailto:[EMAIL PROTECTED]] Sent: Monday, September 09, 2002 11:29 PM To: [EMAIL PROTECTED] Subject: Rpm start up

RE: Difference between ajp13 and ajp14

2002-09-10 Thread Turner, John
For Apache 1.3.26, I don't think you have a choice. As far as I know, you are limited to mod_jk, which is AJP13. Anyone who has successfully built the 4.1.10 connectors (JK and JK2) for Apache 1.3.26 and 2.0.40, please let me know. I've already spent several hours trying to do it, without

RE: Url Mapping with mod_jk

2002-09-10 Thread Turner, John
This is a working workers.properties file, RH 7.2, Tomcat 4.0.4/4.1.10, Apache 1.3.26/2.0.40 using mod_jk 4.0.4 (NOT 4.1.10): # Setup for apache system # workers.tomcat_home=/usr/local/jakarta-tomcat-4.0.4 workers.java_home=/usr/java/j2sdk1.4.0_01 ps=/ worker.list=ajp12, ajp13 # Definition for

Connector collection update

2002-09-10 Thread Turner, John
Hello - I've updated my collection of mod_jk connector binaries. Thanks to Milt Epstein, Detlev Beutner, and Jorge Carrizo, there are now links to mod_jk binaries for RH 7.2, Solaris 8, AIX 4.3.3, and Windows, for various versions of Apache and Tomcat. http://www.johnturner.com/howto

RE: Virtual Host Auto Config

2002-09-10 Thread Turner, John
Hi - That Apache warning message means that you have multiple Apache Virtual Hosts assigned to the same IP address. The correct way to do this in Apache's configuration is to use the NameVirtualHost directive instead of VirtualHost directive. That's all that warning is saying. Each

RE: How can I send respond incrementally in a Servlet

2002-09-10 Thread Turner, John
My guess is it is some sort of progress bar/indicator. John -Original Message- From: Rosdi bin Kasim [mailto:[EMAIL PROTECTED]] Sent: Tuesday, September 10, 2002 11:47 AM To: Tomcat Users List Subject: Re: How can I send respond incrementally in a Servlet What is exactly

RE: Tomcat and SSL

2002-09-10 Thread Turner, John
completely different from other instances? If so where do they get their requests from? One Apache server with multiple virtual hosts? Or do you have multiple Apache servers as well. Thanks, d. Turner, John wrote: The server overhead is going to be minimal by adding a second tomcat

RE: Tomcat and SSL

2002-09-10 Thread Turner, John
~ InnovObjX Corp. Web: www.innovobjx.com Tel: 905-729-2235 x3 Fax: 905-729-2235 ~ -Original Message- From: Turner, John [mailto:[EMAIL PROTECTED]] Sent: Tuesday, September 10, 2002 12:30 PM To: 'Tomcat Users List' Subject: RE

RE: Managing a Listener

2002-09-10 Thread Turner, John
Why not just use a properties file? John -Original Message- From: Craig Longman [mailto:[EMAIL PROTECTED]] Sent: Tuesday, September 10, 2002 2:19 PM To: Tomcat Users List Subject: RE: Managing a Listener On Tue, 2002-09-10 at 14:11, Srofe, Douglas (c) wrote: Craig,

RE: AIX Connector Woes

2002-09-10 Thread Turner, John
Excellent. Let us know, perhaps the hacking you did would work for other platforms, as well. I've had fairly significant grief building the connectors from 4.1.10 source on RedHat 7.2, which is a little surprising to me. If it's hard on Linux, it must be a royal PITA on other platforms,

RE: Managing a Listener

2002-09-10 Thread Turner, John
, Turner, John wrote: Why not just use a properties file? properties, xml, it doesn't really matter what the file is. i just want to figure out how to point the filter/listener TO the file, from the server.xml configuration file. and also how to find the logger, so that the filter can log

RE: Managing a Listener

2002-09-10 Thread Turner, John
: Managing a Listener On Tue, 2002-09-10 at 14:58, Turner, John wrote: From the 4.0 docs: where did you find this? i'm trying to figure out how the listener can obtain basic site configuration info like loggers and directories now, but i can't seem to find anything that takes about

RE: How do I change the default loaded web page?

2002-09-11 Thread Turner, John
Two ways: 1) just put in a meta refresh tag in index.html pointing to main.jsp with a refresh of 0. That's the crude way. 2) the right way is to check out the welcome-page element of web.xml. John -Original Message- From: Ryan Lim [mailto:[EMAIL PROTECTED]] Sent: Tuesday,

RE: Servlet's loading twice on start-up--DRIVING ME NUTS!

2002-09-11 Thread Turner, John
How about posting the document to the list? Or, if you like, I would be glad to host it. I've got bandwidth going to waste. That goes for anyone else that has additional docs that they've written. I would be glad to host them, or link to them if you have them hosted somewhere else. I have a

RE: Hosting services

2002-09-11 Thread Turner, John
With the price of computers these days, it might make more sense to colo instead of share. I don't know of any shared-hosting provider with Tomcat support that will let you stop/start at will, especially on Windows. Colo, on the other hand, is very cheap nowadays. You can find nice colo plans

RE: Tomcat standalone followup question

2002-09-11 Thread Turner, John
One simple reason: to run on port 80, Tomcat has to run as root. Java and JVM security model aside, most admins would avoid running anything on port 80 as root. I'm more of a sys-admin than a developer, so something like that is very important to me. If one of our developers told me to

RE: AIX Connector Woes (success)

2002-09-11 Thread Turner, John
I've posted AIX binaries for Apache 2.0.40 to my site. Both mod_jk and mod_jk2 for AIX 4.3.3 are there, courtesy of Johannes Grumböck, based on Daniel Rinehart's AIX HOWTO. http://www.johnturner.com/howto John -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]

New JK/JK2 documentation available

2002-09-11 Thread Turner, John
This is pretty recent (it wasn't there a couple days ago), and includes information on building the connectors for various OSs. There are also links to the binary area, but none of the binaries are there. http://jakarta.apache.org/tomcat/tomcat-4.1-doc/jk2/index.html For bookmarking

RE: New JK/JK2 documentation available

2002-09-11 Thread Turner, John
In addition, a bunch of new resources have been added to the Tomcat 4.1 docs over 4.0 docs: http://jakarta.apache.org/tomcat/tomcat-4.1-doc/index.html John -Original Message- From: Turner, John [mailto:[EMAIL PROTECTED]] Sent: Wednesday, September 11, 2002 10:16 AM To: '[EMAIL

RE: New JK/JK2 documentation available

2002-09-11 Thread Turner, John
to test the performance and functional enhancements between Jk and Jk2 Connectors. -Message d'origine- De : Turner, John [mailto:[EMAIL PROTECTED]] Envoyé : mercredi 11 septembre 2002 16:24 À : 'Tomcat Users List' Objet : RE: New JK/JK2 documentation available In addition, a bunch

RE: Tomcat with ASP pages

2002-09-11 Thread Turner, John
That's now a Sun product: http://wwws.sun.com/software/chilisoft/index.html John -Original Message- From: Ben Souther [mailto:[EMAIL PROTECTED]] Sent: Wednesday, September 11, 2002 1:28 PM To: Tomcat Users List; [EMAIL PROTECTED] Subject: Re: Tomcat with ASP pages Search

RE: SSL on Tomcat standalone not working

2002-09-11 Thread Turner, John
I don't think its a Tomcat issue. I think it's more of a browser issue. If you use http, the browser doesn't know you intend to connect using SSL, regardless of port number. Try it with paypal, for example: Paypal doesn't accept non-SSL requests at www.paypal.com. If you try to connect

RE: SSL on Tomcat standalone not working

2002-09-11 Thread Turner, John
... Michael Petres ~ InnovObjX Corp. Web: www.innovobjx.com Tel: 905-729-2235 x3 Fax: 905-729-2235 ~ -Original Message- From: Turner, John [mailto:[EMAIL PROTECTED]] Sent: Wednesday, September 11, 2002 1:47 PM To: 'Tomcat

RE: Tomcat shutdown security

2002-09-11 Thread Turner, John
that is running Tomcat. Try it. -Peter -Original Message- From: Przemyslaw Wegrzyn [mailto:[EMAIL PROTECTED]] Sent: Friday, September 06, 2002 1:22 PM To: Tomcat Users List Subject: RE: Tomcat shutdown security On Fri, 2002-09-06 at 21:04, Turner, John wrote: Very interesting

RE: SSL on Tomcat standalone not working

2002-09-11 Thread Turner, John
-Original Message- From: Michael Petres [mailto:[EMAIL PROTECTED]] Sent: Wednesday, September 11, 2002 2:48 PM To: Tomcat Users List Subject: RE: SSL on Tomcat standalone not working P.S. John, are you part of the development team for Tomcat? No, not at all. Does that

RE: SSL on Tomcat standalone not working

2002-09-11 Thread Turner, John
Gotcha. Nope, my skillset leans much too far towards system administration for me to even consider participating on the dev side. I think your arguments make sense, and I agree that it would be nice if Tomcat returned something fairly explanatory instead of what it does now. John

RE: JK binaries?

2002-09-11 Thread Turner, John
About the closest you are going to get are mod_jk binaries compiled from 4.0.4 source. They should work with 4.1.10. Building the connectors from the 4.1.10 source seems to be problematic at the moment. http://www.johnturner.com/howto John -Original Message- From: Tim Moore

RE: apache 1.3 and mod_jk2

2002-09-12 Thread Turner, John
I'm not aware of anyone doing so. I haven't been able to do this, after several hours of trying. I am still trying to determine if its even possible...I'm starting to think that mod_jk2 (at least, the latest version of it) is for Apache 2 only, but I don't know that for sure. John

RE: apache error?

2002-09-12 Thread Turner, John
Do you have the right mod_jk.so The mod_jk.so for Apache 1.3 is not the same mod_jk.so for Apache 2.0. John -Original Message- From: hari hari [mailto:[EMAIL PROTECTED]] Sent: Wednesday, September 11, 2002 8:47 PM To: [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Subject: RE:

RE: How to Change Port Number of Tomcat

2002-09-12 Thread Turner, John
You only need to change all of these ports if all of those connectors are enabled. If you only have the AJP connector enabled, you only have to change that port, etc. John -Original Message- From: Drinkwater, GJ (Glen) [mailto:[EMAIL PROTECTED]] Sent: Thursday, September 12, 2002

RE: Apache 2.0.40/Tomcat 4.1.10 vhost problem

2002-09-12 Thread Turner, John
What are your server.xml Host element definitions? Do you have one for each of the Apache virtual hosts? John -Original Message- From: Short, Dave [mailto:[EMAIL PROTECTED]] Sent: Thursday, September 12, 2002 10:31 AM To: Tomcat Users List Subject: Apache 2.0.40/Tomcat 4.1.10

RE: Apache 2.0.40/Tomcat 4.1.10 vhost problem

2002-09-12 Thread Turner, John
in the server.xml file. Would you mind pointing me in the direction where I can find documentation on this? Thanks!!! -Original Message- From: Turner, John [mailto:[EMAIL PROTECTED]] Sent: September 12, 2002 7:34 AM To: 'Tomcat Users List' Subject: RE: Apache 2.0.40/Tomcat 4.1.10

RE: Tomcat 4.0.4 and Apache 1.3.26 and mod_jk issues

2002-09-12 Thread Turner, John
What do the log files say? John -Original Message- From: Habibak haAlbek [mailto:[EMAIL PROTECTED]] Sent: Thursday, September 12, 2002 10:56 AM To: Tomcat Users List Subject: RE: Tomcat 4.0.4 and Apache 1.3.26 and mod_jk issues Still hangs. Apache alone works fine. TomCat

New Connector Binaries Available

2002-09-12 Thread Turner, John
Hello - Well, it was a brutal, bloody battle, but I managed to build mod_jk and mod_jk2 for both Apache 1.3 and Apache 2.0.40 on RedHat Linux 7.2. All four files (mod_jk and mod_jk2 for both Apache versions) were built from 4.1.10 source. I haven't had a chance to test any of them against my

RE: Tomcat 4.1.10 starting problems under WIN2000!

2002-09-12 Thread Turner, John
What is the value of JAVA_HOME? Does it have a trailing bin? It shouldn't. John -Original Message- From: Alexander Schmidt [mailto:[EMAIL PROTECTED]] Sent: Thursday, September 12, 2002 11:27 AM To: Tomcat Users List Subject: Tomcat 4.1.10 starting problems under WIN2000!

RE: mod_jk.conf-auto not updated

2002-09-12 Thread Turner, John
Do you have a Context element in server.xml for newapp? John -Original Message- From: Heligon Sandra [mailto:[EMAIL PROTECTED]] Sent: Thursday, September 12, 2002 11:37 AM To: '[EMAIL PROTECTED]' Subject: mod_jk.conf-auto not updated I have the following tomcat

RE: apache error?

2002-09-12 Thread Turner, John
Please send questions and requests for help to the tomcat-user list. John Turner -Original Message- From: hari hari [mailto:[EMAIL PROTECTED]] Sent: Thursday, September 12, 2002 2:28 PM To: [EMAIL PROTECTED] Subject: Re: apache error? Hi my friends, my many thank you to

RE: How to Change Port Number of Tomcat

2002-09-12 Thread Turner, John
relevant environments variables? Such as TOMCAT_HOME ... Best regards, Bing -Original Message- From: Turner, John [mailto:[EMAIL PROTECTED]] Sent: Thursday, September 12, 2002 5:03 AM To: 'Tomcat Users List' Subject: RE: How to Change Port Number of Tomcat You only need

RE: apache error?

2002-09-13 Thread Turner, John
What mod_jk.so are you using? Where did you get it, how did you get it? Did you build it from source? If so, how? John -Original Message- From: hari hari [mailto:[EMAIL PROTECTED]] Sent: Thursday, September 12, 2002 8:26 PM To: [EMAIL PROTECTED] Subject: Re: apache error?

RE: __USING COYOTE JK__

2002-09-13 Thread Turner, John
There's quite a bit more than that in the Tomcat docs: http://jakarta.apache.org/tomcat/tomcat-4.1-doc/jk2/index.html Also, you can try my HOWTOs: http://www.johnturner.com/howto John -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Friday, September

<    4   5   6   7   8   9   10   11   12   13   >