RE: Configuring Tomcat for multiple applications/users

2003-04-01 Thread Filip Hanik
PROTECTED] Sent: Tuesday, April 01, 2003 8:37 PM To: Tomcat Users List Subject: Configuring Tomcat for multiple applications/users Can anyone point me to how to get this type of setup. I want to have multiple instance of tomcat running on the same machine under different ports, say 80, 8080,

Re: Configuring Tomcat to use a JDBC Realm

2003-03-29 Thread Dean A. Hoover
Isn't mysql a client program? If so, I can connect with the user/pw. Tarun Ramakrishna Elankath wrote: Seems like an access problem to me. Dean, did you try connecting to the server from a mysql client with the given username/password to check whether you are able to connect ? On Sat,

Configuring Tomcat to use a JDBC Realm

2003-03-28 Thread Dean A. Hoover
I am attempting to use JDBC Realm as described in the Apress book by James Goodwill. My os is RH 8.0. I'm using MySQL 4.0.12 and Connector/J 3.06. I am using Tomcat 4.0.6. I set up a tomcatusers database and a test user as per the book. I dropped mysql-connector-java-3.0.6-stable-bin.jar into

RE: Configuring Tomcat to use a JDBC Realm

2003-03-28 Thread Galbayar Dorjgotov
check mysql port -Original Message- From: Dean A. Hoover [mailto:[EMAIL PROTECTED] Sent: Saturday, March 29, 2003 9:20 AM To: [EMAIL PROTECTED] Subject: Configuring Tomcat to use a JDBC Realm I am attempting to use JDBC Realm as described in the Apress book by James Goodwill. My os

Re: Configuring Tomcat to use a JDBC Realm

2003-03-28 Thread Dean A. Hoover
Can you be a little more specific? I'm not a mysql expert. Galbayar Dorjgotov wrote: check mysql port -Original Message- From: Dean A. Hoover [mailto:[EMAIL PROTECTED] Sent: Saturday, March 29, 2003 9:20 AM To: [EMAIL PROTECTED] Subject: Configuring Tomcat to use a JDBC Realm I am

Re: Configuring Tomcat to use a JDBC Realm

2003-03-28 Thread Tarun Ramakrishna Elankath
Seems like an access problem to me. Dean, did you try connecting to the server from a mysql client with the given username/password to check whether you are able to connect ? On Sat, 2003-03-29 at 07:50, Dean A. Hoover wrote: Can you be a little more specific? I'm not a mysql expert.

Need help configuring Tomcat (Standalone) with CGI Suppport

2003-03-18 Thread Luis Casillas
Can anyone help me configure this setup. Do I need to create the actual cgi-bin and if so where? Running on Windows. - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Configuring Tomcat with JMX - Newbie

2003-03-14 Thread Nicolas Dinh
Hi there, I've trying to write a servlet that changes the acceptCount value of the Tomcat Stand-Alone connector when it is hit. I'm having some problems with it (mainly NullPointerExceptions at the line where i call the mBServer.setAttribute() and mBServer.invoke() functions. This is my

Configuring Tomcat with IIS Web Server

2003-03-04 Thread Brewer, Michael
I'm working on Configuring Tomcat with IIS Web Server http://www.onjava.com/pub/a/onjava/2002/12/18/tomcat.htmlfrom O'Reilly Net. I think that I have followed everything exactly. I get a 404. tomcat is the first and only ISAPI redirector in my list, it has a green arrow. I've triple-checked my

RE: Configuring Tomcat with IIS Web Server

2003-03-04 Thread Varley, Roger
I'm working on Configuring Tomcat with IIS Web Server http://www.onjava.com/pub/a/onjava/2002/12/18/tomcat.htmlfro m O'Reilly Net. I think that I have followed everything exactly. I get a 404. tomcat is the first and only ISAPI redirector in my list, it has a green arrow. I've triple

Problems configuring Tomcat with Apache using mod_jk2

2003-03-04 Thread David Godfrey
Hi, I'm having problems when trying to use Tomcat and Apache HTTP server together, with mod_jk2. I have built Apache from the source, installed Tomcat 4.1.18, and tested each individually (they seem to function correctly). When I add in mod_jk2, both Apache and Tomcat still start and function

RE: Problems configuring Tomcat with Apache using mod_jk2

2003-03-04 Thread apachep2
Can you search archive? My bet is you didn't define [uri] in your workers2.properties. -Original Message- From: David Godfrey [mailto:[EMAIL PROTECTED] Sent: March 4, 2003 11:36 AM To: '[EMAIL PROTECTED]' Subject: Problems configuring Tomcat with Apache using mod_jk2 Hi, I'm having

Re: Problems configuring Tomcat with Apache using mod_jk2

2003-03-04 Thread Ben Ricker
You need to JkMount the /examples in httpd.conf. Something like JkMount */examples blah where blah is the name of your loadbalancer setup in workers.properties. It would help if you post the entries you added in httpd.conf for Tomcat. Also include your server.xml file for more information. Ben

RE: Problems configuring Tomcat with Apache using mod_jk2

2003-03-04 Thread apachep2
To: '[EMAIL PROTECTED]' Subject: Re: Problems configuring Tomcat with Apache using mod_jk2 You need to JkMount the /examples in httpd.conf. Something like JkMount */examples blah where blah is the name of your loadbalancer setup in workers.properties. It would help if you post the entries you added

Re: Problems configuring Tomcat with Apache using mod_jk2

2003-03-04 Thread Ben Ricker
On Tue, 2003-03-04 at 10:36, Ben Ricker wrote: You need to JkMount the /examples in httpd.conf. Something like JkMount */examples blah where blah is the name of your loadbalancer setup in workers.properties. Let me correct that: it should be '/examples/* blah'. I was looking at two different

RE: Problems configuring Tomcat with Apache using mod_jk2

2003-03-04 Thread David Godfrey
type=java.lang.Integer/ /Context /Host /Engine /Service /Server Many thanks, David -Original Message- From: Ben Ricker [mailto:[EMAIL PROTECTED] Sent: 04 March 2003 16:37 To: '[EMAIL PROTECTED]' Subject: Re: Problems configuring Tomcat with Apache using

Re: Problems configuring Tomcat with Apache using mod_jk2

2003-03-04 Thread Mark Eggers
Actually, mod_jk2 does not use JKMount . . . . In workers2.properties you might have a configuration that reads: # Uri mapping [uri:/examples/*.jsp] worker=ajp13:localhost:8009 Now this is really pointing to: $TOMCAT_HOME/webapps/examples Most of the time, the absolute directory is outside of

RE: Problems configuring Tomcat with Apache using mod_jk2

2003-03-04 Thread Ben Ricker
To: '[EMAIL PROTECTED]' Subject: Re: Problems configuring Tomcat with Apache using mod_jk2 You need to JkMount the /examples in httpd.conf. Something like JkMount */examples blah where blah is the name of your loadbalancer setup in workers.properties. It would help if you post the entries

RE: Problems configuring Tomcat with Apache using mod_jk2

2003-03-04 Thread Andy Eastham
PROTECTED] Sent: 04 March 2003 17:02 To: 'Tomcat Users List' Subject: RE: Problems configuring Tomcat with Apache using mod_jk2 It would help if you post the entries you added in httpd.conf for Tomcat. Also include your server.xml file for more information. I have modified httpd.conf as follows

RE: Problems configuring Tomcat with Apache using mod_jk2

2003-03-04 Thread Rick Bullotta
Eastham [mailto:[EMAIL PROTECTED] Sent: Tuesday, March 04, 2003 12:32 PM To: Tomcat Users List Subject: RE: Problems configuring Tomcat with Apache using mod_jk2 David, This looks like jk config to me, not jk2. If it helps, here are my working config files for apache 2 and mod_jk2 on solaris

RE: Configuring Tomcat with IIS Web Server

2003-03-04 Thread Jay Lee
by checking the log file iis_redirector.log. this should help and good luck. jay -Original Message- From: Brewer, Michael [mailto:[EMAIL PROTECTED] Sent: Tuesday, March 04, 2003 7:03 AM To: [EMAIL PROTECTED] Subject: Configuring Tomcat with IIS Web Server I'm working on Configuring Tomcat

RE: Configuring Tomcat with IIS Web Server

2003-03-04 Thread Mark Eggers
Michael, There are three other issues that you need to be concerned about with IIS. 1. Make sure you set up virtual directories to point to the %TOMCAT_HOME%\webapps\appname for each Tomcat application you wish to serve via IIS. 2. Make sure your System account (which runs IIS) has read access

RE: Problems configuring Tomcat with Apache using mod_jk2

2003-03-04 Thread Andy Eastham
Users List' Subject: RE: Problems configuring Tomcat with Apache using mod_jk2 The mystery to me is why there is a shm.file entry in jk2.properties...when the actual entry seems to need to be in workers2.properties. The documentation is very sparse in this area. Rick Bullotta CTO

RE: Problems configuring Tomcat with Apache using mod_jk2

2003-03-04 Thread Rick Bullotta
, 2003 3:49 PM To: Tomcat Users List Subject: RE: Problems configuring Tomcat with Apache using mod_jk2 Rick, That's a leftover from the file on the web I copied my config from - it's commented out anyway. I haven't a clue what it does. All I know is that this set up works! Andy

RE: Problems configuring Tomcat with Apache using mod_jk2

2003-03-04 Thread Kwong Chong
2003 3:36 To: '[EMAIL PROTECTED]' Subject: Problems configuring Tomcat with Apache using mod_jk2 Hi, I'm having problems when trying to use Tomcat and Apache HTTP server together, with mod_jk2. I have built Apache from the source, installed Tomcat 4.1.18, and tested each individually (they seem

Re: INDIANNIC : CONFIGURING TOMCAT WITHOUT PORT 8080

2003-03-02 Thread INDIANNIC-HOSTING
rajesh - Original Message - From: Jacob Kjome [EMAIL PROTECTED] To: Tomcat Users List [EMAIL PROTECTED] Sent: Sunday, March 02, 2003 11:44 AM Subject: Re: INDIANNIC : CONFIGURING TOMCAT WITHOUT PORT 8080 You can do one of two things... 1. Change the http1.1 connector in the server.xml

Re: INDIANNIC : CONFIGURING TOMCAT WITHOUT PORT 8080

2003-03-02 Thread Jacob Kjome
the above up so that we can directly access it as http://aaaonlinux.com/abc.jsp regds rajesh - Original Message - From: Jacob Kjome [EMAIL PROTECTED] To: Tomcat Users List [EMAIL PROTECTED] Sent: Sunday, March 02, 2003 11:44 AM Subject: Re: INDIANNIC : CONFIGURING TOMCAT WITHOUT PORT 8080

Re: INDIANNIC : CONFIGURING TOMCAT WITHOUT PORT 8080

2003-03-02 Thread INDIANNIC-HOSTING
hi thanks a lot regds rajesh - Original Message - From: Jacob Kjome [EMAIL PROTECTED] To: Tomcat Users List [EMAIL PROTECTED] Sent: Sunday, March 02, 2003 10:14 PM Subject: Re: INDIANNIC : CONFIGURING TOMCAT WITHOUT PORT 8080 Hmm You know, I haven't used Tomcat-3.3 in so long

INDIANNIC : CONFIGURING TOMCAT WITHOUT PORT 8080

2003-03-01 Thread INDIANNIC-HOSTING
Dear friends i need to configure tomcat so that i can access it without using the port 8080 i am running tomcat (on port 8080) along with apache (on port 80) on redhat linux Ii am running tomcat on windows with IIS and I was successful in using the iis redirector dll which redirects all jsp and

Re: Configuring Tomcat 4.1.18 to handle 401 http errors

2003-02-26 Thread Oliver Schoenwald
. Yoav Shapira Millennium ChemInformatics -Original Message- From: Oliver Schoenwald [mailto:[EMAIL PROTECTED] Sent: Tuesday, February 25, 2003 4:18 AM To: Tomcat Users List Subject: Configuring Tomcat 4.1.18 to handle 401 http errors Good morning! some days ago I already asked

Configuring Tomcat 4.1.18 to handle 401 http errors

2003-02-25 Thread Oliver Schoenwald
Good morning! some days ago I already asked a question regarding this context, but I had some time to dive a bit into the Servlet API 2.3 Specification. So far, it seems that the specification states that the container, not the servlet, is the layer attached to the client. And the container,

RE: Configuring Tomcat 4.1.18 to handle 401 http errors

2003-02-25 Thread Shapira, Yoav
Message- From: Oliver Schoenwald [mailto:[EMAIL PROTECTED] Sent: Tuesday, February 25, 2003 4:18 AM To: Tomcat Users List Subject: Configuring Tomcat 4.1.18 to handle 401 http errors Good morning! some days ago I already asked a question regarding this context, but I had some time to dive a bit

RE: Configuring TOMCAT to work behind a proxy

2003-02-12 Thread Arijit Mukherjee
-Original Message- From: Arijit Mukherjee Sent: 11 February 2003 15:19 To: '[EMAIL PROTECTED]' Subject: Configuring TOMCAT to work behind a proxy Hi I am trying to write some Grid Services (OGSA) which will run on TOMCAT (version 4.18 - windows 2000) and access external web

Configuring TOMCAT to work behind a proxy

2003-02-11 Thread Arijit Mukherjee
Hi I am trying to write some Grid Services (OGSA) which will run on TOMCAT (version 4.18 - windows 2000) and access external web services (over the internet). I am behind a proxy server. A simple java client can access the web services when I set the system properties specific for my proxy host

Re: Configuring Tomcat 4.1 with iPlanet iWS 6.0

2003-02-07 Thread Mark Strecker
I am going through this process with v4.1.8 and you have two choices : in process and out of process connections. You can use the jk2 (ajp13 protocol, since you are using Tomcat 4.x) native connector to run iplanet and connect to Tomcat via TCP or you can use the JNI connector for in process.

Configuring Tomcat 4.1 with iPlanet iWS 6.0

2003-02-06 Thread Chris Gow
Hi: I've just downloaded and setup Tomcat 4.1 and have it working in its default configuration. I am now trying to get Tomcat working with iPlanet iWS. I'm a little (ok a lot) confused about how to go about configuring this. Do I use jk2? If so, where do I get the binary from? Is there a

Newbie installing and configuring Tomcat with Apache on a Debian

2003-01-23 Thread Manuel Gonzalez
Hello, I am new trying to configure Tomcat integrated with Apache on a Debian distribution. Has anyone a kind of step by step installation? Thanks very much Manuel -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands, e-mail: mailto:[EMAIL PROTECTED]

configuring tomcat/apache using loadbalancing for ajp

2003-01-16 Thread Scott Burns
I am curious if this setup looks correct. I am confused about using the alias directive. If you have multiple workers how can you specify more than one alias with the same fakename? Do I need to use them. do I need to explicitly use them for the JkMount directives? thanks Scott

RE: Need your help - Configuring tomcat with apache - webapp - linux server

2003-01-06 Thread Turner, John
: Monday, January 06, 2003 1:28 AM To: [EMAIL PROTECTED] Subject: Need your help - Configuring tomcat with apache - webapp - linux server Hi, I would like connect tomcat 4.1.18 with apache 2.x under linux. I search the connector binarie file (not RPM) on the jakarta ftp site

Configuring tomcat with apache - webapp - linux server

2003-01-05 Thread Vincent Geneste
Hi, I would like connect tomcat 4.1.18 with apache 2.x under linux. I search the connector binarie file (not RPM) on the jakarta ftp site but the directories are empty (binary or RPM) Is someone able to help me ? Thank's for your help and sorry for my poor english. Vincent. -- To

RE: Configuring tomcat with apache - webapp - linux server

2003-01-05 Thread Denise Mangano
Geneste To: [EMAIL PROTECTED] Sent: 1/5/2003 12:51 PM Subject: Configuring tomcat with apache - webapp - linux server Hi, I would like connect tomcat 4.1.18 with apache 2.x under linux. I search the connector binarie file (not RPM) on the jakarta ftp site but the directories are empty (binary or RPM

Need your help - Configuring tomcat with apache - webapp - linuxserver

2003-01-05 Thread Vincent Geneste
Hi, I would like connect tomcat 4.1.18 with apache 2.x under linux. I search the connector binarie file (not RPM) on the jakarta ftp site but the directories are empty (binary or RPM) Is someone able to help me ? Thank's for your help and sorry for my poor english. Vincent. -- To

Problem configuring tomcat 4.1.18 LE with IIS 5.0/JDK1.4 using jni

2002-12-30 Thread Vikas Manocha
I have succesfully been able to configure tomcat 4.1.18 LE to work with IIS 4.0/JDK1.4 using sockets. I would like to configure it to use JNI though and that's where I am running into a problem. When I configure with JNI, it is able to successully load the example webapps, but not my webapp. The

configuring tomcat not to generate java source

2002-12-04 Thread Ronen Shenkar
I wonder if there is a way to configure tomcat 3.2 not to generate the java code, I suppose that it should make some performance improvement. Thanks, ronen -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands, e-mail: mailto:[EMAIL PROTECTED]

RE: configuring tomcat not to generate java source

2002-12-04 Thread Manavendra Gupta
so what do you think should happen to the jsp pages if tomcat does not generate code? -Original Message- From: Ronen Shenkar [mailto:[EMAIL PROTECTED]] Sent: Thursday, December 05, 2002 1:12 PM To: [EMAIL PROTECTED] Subject: configuring tomcat not to generate java source I wonder

Configuring tomcat to use different realms with different applications

2002-11-08 Thread McBrayer, Roy
I cannot get TomCat 4.1.12 to use different realms for separate applications. I have specified the realm inside an application context in the server.xml file but the app is still using the default realm. If I remove the default realm then nothing works. With respect to the xml files given

RE: Configuring Tomcat 4.0.3

2002-11-01 Thread Turner, John
Message- From: Kaustuv Sharma [mailto:skaustuva;neline.com] Sent: Friday, November 01, 2002 2:49 AM To: [EMAIL PROTECTED] Subject: Configuring Tomcat 4.0.3 Hi, I have an existing system which consists of JSP files and jars running on Tomcat 3.2.1 on Linux 6.1 platform. I have

Configuring Tomcat 4.0.3

2002-10-31 Thread Kaustuv Sharma
Hi, I have an existing system which consists of JSP files and jars running on Tomcat 3.2.1 on Linux 6.1 platform. I have to upgrade it to Tomcat 4.0.3 on Red Hat Linux 8.0. However, now I am having problems in loading the jar files. Before the jars were under a different location than the

configuring tomcat 4.1.12 creating mod_jk.conf-auto

2002-10-28 Thread Rainer Bruch
how and where do i have to configure tomcat 4.1.12 to create automatically the 'mod_jk.conf-auto' for 'apche 1.3.x' or 'apache2'? regards raibru -- To unsubscribe, e-mail: mailto:tomcat-user-unsubscribe;jakarta.apache.org For additional commands, e-mail:

RE: configuring tomcat 4.1.12 creating mod_jk.conf-auto

2002-10-28 Thread Hamilton, Andrew
the configuration is written in $TOMCAT_HOME/conf/auto/mod_jk.conf. Regards, Drew -Original Message- From: [EMAIL PROTECTED] [mailto:Rainer.Bruch;t-online.de] Sent: Monday, October 28, 2002 1:59 PM To: Tomcat User List Subject: configuring tomcat 4.1.12 creating mod_jk.conf-auto how and where

[Configuring] Tomcat 4.1.12 apache 1.3.26 jk2

2002-10-18 Thread François Vallet
Hello Guys Do you know if it we can associate apache 1.3.26 -JK2- Tomcat 4.1.12 If YES Do you have a good url where there is a pretty good documentation to install them ? Else What is wrong ! Thanks in advance François -Original Message- From: David Scott

RE: [Configuring] Tomcat 4.1.12 apache 1.3.26 jk2

2002-10-18 Thread Hendrik Coetzee
List' Subject: [Configuring] Tomcat 4.1.12 apache 1.3.26 jk2 Hello Guys Do you know if it we can associate apache 1.3.26 -JK2- Tomcat 4.1.12 If YES Do you have a good url where there is a pretty good documentation to install them ? Else What is wrong ! Thanks in advance

RE: [Configuring] Tomcat 4.1.12 apache 1.3.26 jk2

2002-10-18 Thread François Vallet
: RE: [Configuring] Tomcat 4.1.12 apache 1.3.26 jk2 Hi François Found this site - has a couple of very good how-to's. Check it out, maybe it will help... http://www.galatea.com/flashguides/index Hendrik Coetzee -Original Message- From: François Vallet

RE: [Configuring] Tomcat 4.1.12 apache 1.3.26 jk2

2002-10-18 Thread Turner, John
I don't think JK2 uses JkWorkersFile. John -Original Message- From: François Vallet [mailto:fvallet;infovista.com] Sent: Friday, October 18, 2002 9:43 AM To: 'Tomcat Users List' Subject: RE: [Configuring] Tomcat 4.1.12 apache 1.3.26 jk2 Ok thanks! But i've followed

RE: [Configuring] Tomcat 4.1.12 apache 1.3.26 jk2

2002-10-18 Thread François Vallet
I use mod_JK not jk2 ! But if you have a good url to how to use jk2 instead of jk I will be pleased to try it ! -Original Message- From: Turner, John [mailto:JTurner;AAS.com] Sent: vendredi 18 octobre 2002 15:44 To: 'Tomcat Users List' Subject: RE: [Configuring] Tomcat 4.1.12

RE: [Configuring] Tomcat 4.1.12 apache 1.3.26 jk2

2002-10-18 Thread Turner, John
Sorry...an earlier post from you said: Hello Guys, Do you know if it we can associate apache 1.3.26 -JK2- Tomcat 4.1.12. And the subject of this thread is [Configuring] Tomcat 4.1.12 apache 1.3.26 jk2. Silly me for assuming you are using JK2. John -Original Message- From

RE: [Configuring] Tomcat 4.1.12 apache 1.3.26 jk2

2002-10-18 Thread Aryeh Katz
-Original Message- From: Turner, John [mailto:JTurner;AAS.com] Sent: vendredi 18 octobre 2002 15:44 To: 'Tomcat Users List' Subject: RE: [Configuring] Tomcat 4.1.12 apache 1.3.26 jk2 I don't think JK2 uses JkWorkersFile. John -Original Message- From

RE: [Configuring] Tomcat 4.1.12 apache 1.3.26 jk2

2002-10-18 Thread François Vallet
Ok i don't user JK2 anymore and i use JK an it's works perfectly ! Thanks all F. -Original Message- From: Aryeh Katz [mailto:aryeh;vasco.com] Sent: vendredi 18 octobre 2002 17:13 To: 'Tomcat Users List' Subject: RE: [Configuring] Tomcat 4.1.12 apache 1.3.26 jk2 I use mod_JK

RE: [Configuring] Tomcat 4.1.12 apache 1.3.26 jk2

2002-10-18 Thread François Vallet
octobre 2002 16:52 To: 'Tomcat Users List' Subject: RE: [Configuring] Tomcat 4.1.12 apache 1.3.26 jk2 Sorry...an earlier post from you said: Hello Guys, Do you know if it we can associate apache 1.3.26 -JK2- Tomcat 4.1.12. And the subject of this thread is [Configuring] Tomcat 4.1.12

RE: [Configuring] Tomcat 4.1.12 apache 1.3.26 jk2

2002-10-18 Thread Turner, John
Vallet [mailto:fvallet;infovista.com] Sent: Friday, October 18, 2002 11:25 AM To: 'Tomcat Users List' Subject: RE: [Configuring] Tomcat 4.1.12 apache 1.3.26 jk2 Ok sorry ! But why there two connectors by default with tomcat 4.1.12 ? (port 8080 and port 8009 ) The documentation about

RE: Configuring Tomcat to start with different verisons of a Web App

2002-10-07 Thread Tim Moore
-Original Message- From: Scott Goldstein [mailto:[EMAIL PROTECTED]] Sent: Monday, October 07, 2002 2:52 PM To: [EMAIL PROTECTED] Subject: Configuring Tomcat to start with different verisons of a Web App At any one time, I have multiple versions of a product that I'm working

Re: Configuring Tomcat to start with different verisons of a WebApp

2002-10-07 Thread Mark R. Diggory
: -Original Message- From: Scott Goldstein [mailto:[EMAIL PROTECTED]] Sent: Monday, October 07, 2002 2:52 PM To: [EMAIL PROTECTED] Subject: Configuring Tomcat to start with different verisons of a Web App At any one time, I have multiple versions of a product that I'm working on on my development

RE: Configuring Tomcat to start with different verisons of a Web App

2002-10-07 Thread Sexton, George
Why not have 3 different web apps context1, context2, context3 and run them all in the same container? -Original Message- From: Scott Goldstein [mailto:[EMAIL PROTECTED]] Sent: 07 October, 2002 12:52 PM To: [EMAIL PROTECTED] Subject: Configuring Tomcat to start with different verisons

Re: Configuring Tomcat to start with different verisons of a WebApp

2002-10-07 Thread Mark R. Diggory
on the head!) I'll try that and see if it solves the problem. -Mark Tim Moore wrote: -Original Message- From: Scott Goldstein [mailto:[EMAIL PROTECTED]] Sent: Monday, October 07, 2002 2:52 PM To: [EMAIL PROTECTED] Subject: Configuring Tomcat to start with different verisons

Re: Configuring Tomcat to start with different verisons of a Web App

2002-10-07 Thread Andreas Probst
Hi Scott, you could simply have 3 Tomcats, e.g. .../tomcat1, .../tomcat2, .../tomcat3. All you need is to have 3 icons linked to the right startup script. If you run only one at a time it will work fine. Andreas On 7 Oct 2002 at 14:51, Scott Goldstein wrote: At any one time, I have

Configuring Tomcat to read from CVSCheckout Directory

2002-10-01 Thread Ibrahim Shaik
Hi all , I am new to tomcat administration. I have a JSP - Servlet architecture application , which works fine when I copy my JSP pages to Catalina_Home/webapps/ROOT directory and the servlets to catalina_home/classes/ directory. Now , we have put this application into CVS repository. I

FW: Configuring Tomcat to read from CVSCheckout Directory

2002-10-01 Thread Ibrahim Shaik
Thought I will repost the same message . Any help? -Original Message- From: Ibrahim Shaik [mailto:[EMAIL PROTECTED]] Sent: Tuesday, October 01, 2002 12:02 PM To: Tomcat Users List Subject: Configuring Tomcat to read from CVSCheckout Directory Hi all , I am new to tomcat

Re: Configuring tomcat 4.1.10 for working with both http and https

2002-09-10 Thread Giovanni Cuccu
At 18:19 09/09/2002 +0200, you wrote: I found that if I use the old connector (JK) all works well. It seems like the jk2 connector (which is much faster than its predecessor) still need some testing before going really usable. Giovanni Hi all, I have just downloaded tomcat 4.1.10 and

Re: Configuring Tomcat 4.0

2002-09-10 Thread Mauro Daniel Ardolino
Well. I think is better to tell you how I did to make a servlet work. First of all I created a folder under webapps (e.g. miFirstServlet). After that I put a simple html file called index.html inside this folder. Example of simple index.html: html headtitleMy first servlet/title/head body

Configuring tomcat 4.1.10 for working with both http and https

2002-09-09 Thread Giovanni Cuccu
Hi all, I have just downloaded tomcat 4.1.10 and replaced tomcat 4.0.4 in the previous version I had a site working with both http and https. Now I switched to the jk2 connector and I have this problem the jk2 connector can't works with https and http together. In the server.xml i had

Configuring Tomcat 4.0

2002-09-09 Thread srilatha sagar
Hi! I've installed tomcat 4.0 and jdk1.2 on windows 98 machine.The server is installed and i'm able to run the examples/jsp and examples/servlet files. But when it comes to my own Servlet files,it's giving the error:HTTP 404,file not found. Please let me know,as how to configure tomcat 4.0 on

Re: Configuring Tomcat 4.0

2002-09-09 Thread Mauro Daniel Ardolino
Some questions: Where did you put the files of your applications? (*.class, *.jsp, *.html) Did you create the web.xml file? If so, did you declare your servlet there? How did you write the URL to access your servlet? Is your servlet in a package? More information at:

Re: Configuring Tomcat 4.0

2002-09-09 Thread srilatha sagar
Hi! I've copied the .class files c:\tomcat4\webapps\ROOT\WEB-INF\classes I've include the following lines in autoexec.bat: set JAVA_HOME=c:\jdk1.2 set CLASSPATH=.;C:\tomcat4\common\lib\servlet.jar;%CLASSPATH% set PATH=%PATH%;%JAVA_HOME%\bin I've uncommented the following line in

Configuring Tomcat 3.2.4 for use with a SecurityManager

2002-09-04 Thread defender
All, Is it just add the -security option in startup batch file? And if I want people can only access the webapps/joe/examples folder which come from port 8080 and webapps/joe/examples folder which come from port 8443, is it just like showed as below? grant codeBase

Configuring Tomcat 3.2.4 for use with a SecurityManager

2002-09-04 Thread defender
All, Is it just add the -security option in startup batch file? And if I want people can only access the webapps/joe/examples folder which come from port 8080 and webapps/joe/examples folder which come from port 8443, is it just like showed as below? grant codeBase

Re: Trouble configuring Tomcat 4.0.4 JNDI connection to MySQL

2002-08-30 Thread Martin Jacobson
[EMAIL PROTECTED] wrote: Vance, Good eye. It use to be driverName but got changed along the way to URL. Probably when I started following the 4.1 how-to. In any case, I changed back to driverName and, alas, same problem. Vance, do you get the same error?

Re: Trouble configuring Tomcat 4.0.4 JNDI connection to MySQL

2002-08-30 Thread stevem
Subject Please respond to Re: Trouble configuring Tomcat 4.0.4 Tomcat Users JNDI connection to MySQL List

Re: Trouble configuring Tomcat 4.0.4 JNDI connection to MySQL

2002-08-30 Thread stevem
to Re: Trouble configuring Tomcat 4.0.4 Tomcat Users JNDI connection to MySQL List tomcat-user@jakar ta.apache.org

Re: Trouble configuring Tomcat 4.0.4 JNDI connection to MySQL

2002-08-30 Thread Craig R. McClanahan
On Fri, 30 Aug 2002, Martin Jacobson wrote: At this point, Craig will probably come in and say to move to tc 4.1, and I'd say, 'fine, as long as you don't use SSL with a standalone tomcat, because the Coyote connector is broken in this respect.' I hope you've reported your issues to the

Re: Trouble configuring Tomcat 4.0.4 JNDI connection to MySQL

2002-08-30 Thread Vance Christiaanse
] AM cc Subject Please respond to Re: Trouble configuring Tomcat 4.0.4 Tomcat Users JNDI connection to MySQL

Re: Trouble configuring Tomcat 4.0.4 JNDI connection to MySQL

2002-08-30 Thread stevem
cc PM Subject Re: Trouble configuring Tomcat 4.0.4 Please respond to JNDI connection

Re: Trouble configuring Tomcat 4.0.4 JNDI connection to MySQL ***PROBLEMSOLVED***

2002-08-30 Thread stevem
Thank you to everyone who helped with this. I am now able to use a JNDI MySQL DataSource. The last problem I had, after moving to 4.1.9, was caused by a typo in my closing /Context tag. I do not know if that was the problem all along with 4.0.4. -- To unsubscribe, e-mail: mailto:[EMAIL

Trouble configuring Tomcat 4.0.4 JNDI connection to MySQL

2002-08-29 Thread stevem
After reading something in another post this morning I realized I was mixing instructions from the 4.1 JNDI How-to. I've reposted this message with updated information after making sure I was ONLY following the 4.0 JNDI How to. I have deleted my server.xml and started with a fresh copy. First,

Re: Trouble configuring Tomcat 4.0.4 JNDI connection to MySQL

2002-08-29 Thread Vance Christiaanse
but you're trying to use 4.0. I don't know if this is significant or not. Vance - Original Message - From: [EMAIL PROTECTED] To: Tomcat Users List [EMAIL PROTECTED] Sent: Thursday, August 29, 2002 10:31 AM Subject: Trouble configuring Tomcat 4.0.4 JNDI connection to MySQL After reading

Re: Trouble configuring Tomcat 4.0.4 JNDI connection to MySQL

2002-08-29 Thread stevem
cc AM Subject Re: Trouble configuring Tomcat 4.0.4 Please respond to JNDI

configuring tomcat 4.0.4 for jdbc

2002-08-13 Thread Neha Srivastava
hi, I am using Tomcat 4.0.4 and am trying to use jdbc in servlets . It is not able to find the data source name. kindly tell me how to configure Tomcat4.0.4 for jdbc. Thanks and regards neha **Disclaimer Information contained

Re: configuring tomcat 4.0.4 for jdbc

2002-08-13 Thread RahulKrishna Gupta
just pur the relevant jar files in TOMCAT_HOME/common/lib directory and restart tomcat -Rahul Neha Srivastava wrote: hi, I am using Tomcat 4.0.4 and am trying to use jdbc in servlets . It is not able to find the data source name. kindly tell me how to configure Tomcat4.0.4 for jdbc.

Re: configuring tomcat 4.0.4 for jdbc

2002-08-13 Thread Neha Srivastava
Thanks It is solved. regds neha - Original Message - From: RahulKrishna Gupta [EMAIL PROTECTED] To: Tomcat Users List [EMAIL PROTECTED] Sent: Wednesday, August 14, 2002 10:58 AM Subject: Re: configuring tomcat 4.0.4 for jdbc just pur the relevant jar files in TOMCAT_HOME/common/lib

configuring tomcat for 100+ contexts

2002-08-09 Thread B. Duffee
G'day all: How do I tell tomcat that everything under a WEB-INF is a tomcat context? (A colleague said he saw it in the docs somewhere, but neither of us can find it again and I've had no success in my archive and web searches) I've got 3 courses of 100 students, some of which want to use

AW: configuring tomcat for 100+ contexts

2002-08-09 Thread Power-Netz \(Schwarz\)
student in the servlet.xml. I would _like_ to be able to say for every directory that you find a WEB-INF, such as /var/www/htdocs/$course/$student/WEB-INF Would Context path= docBase=/var/www/htdocs/*/* appBase=/var/www/htdocs/ reloadable=true debug=0/ make any

Re: AW: configuring tomcat for 100+ contexts

2002-08-09 Thread B. Duffee
student in the servlet.xml. I would _like_ to be able to say for every directory that you find a WEB-INF, such as /var/www/htdocs/$course/$student/WEB-INF Would Context path= docBase=/var/www/htdocs/*/* appBase=/var/www/htdocs/ reloadable=true debug=0/ make any

Re: AW: configuring tomcat for 100+ contexts

2002-08-09 Thread Craig R. McClanahan
On Fri, 9 Aug 2002, B. Duffee wrote: Date: Fri, 9 Aug 2002 11:59:48 +0100 (BST) From: B. Duffee [EMAIL PROTECTED] Reply-To: Tomcat Users List [EMAIL PROTECTED], B. Duffee [EMAIL PROTECTED] To: [EMAIL PROTECTED], [EMAIL PROTECTED] Subject: Re: AW: configuring tomcat for 100+ contexts

Configuring Tomcat for Numerous Connections/Transactions

2002-08-02 Thread Marinko, Jeff
Greetings! I'm fairly new to configuring Tomcat, so I was hoping for a little advice or pointers to specific documentation. I'm running a server that has to service numerous connection/transactions per second. Aside from setting minProcesses and maxProcesses to higher values (than the default

RE: Configuring Tomcat for Numerous Connections/Transactions

2002-08-02 Thread Turner, John
Server platform? OS? Is there a database involved? If so, which one? John Turner [EMAIL PROTECTED] -Original Message- From: Marinko, Jeff [mailto:[EMAIL PROTECTED]] Sent: Friday, August 02, 2002 3:19 PM To: Tomcat Users List Subject: Configuring Tomcat for Numerous Connections

RE: Configuring Tomcat for Numerous Connections/Transactions

2002-08-02 Thread Marinko, Jeff
Dual 1 GHz Intel machine, running WinNT (or 2K). No database involved. That help? Thanks! -Original Message- From: Turner, John [mailto:[EMAIL PROTECTED]] Sent: Friday, August 02, 2002 12:25 PM To: 'Tomcat Users List' Subject: RE: Configuring Tomcat for Numerous Connections

Configuring tomcat to work with Apache.

2002-07-22 Thread Nagasai Ganduri
documentation, but could not get it to work. Can anyone help me with configuring tomcat for this use?? Thanks in advance, Nagasai. = Nagasai Ganduri 832 Ridge Drive, #116 Dekalb, IL 60115 Ph: (815) 754 - 9701 __ Do You Yahoo!? Yahoo! Health

configuring tomcat to run behind iPlanet Web Server...

2002-07-10 Thread Sesha Nandyal
How do I configure Tomcat to run behind iPlanet Web Server? I have the tomcat-jk2.jar. How do I use this jar? Any pointers to docs would be very helpful. Thanks Sesha -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands, e-mail: mailto:[EMAIL PROTECTED]

RE: configuring tomcat to run behind iPlanet Web Server...

2002-07-10 Thread Turner, John
[mailto:[EMAIL PROTECTED]] Sent: Wednesday, July 10, 2002 11:57 AM To: [EMAIL PROTECTED] Subject: configuring tomcat to run behind iPlanet Web Server... How do I configure Tomcat to run behind iPlanet Web Server? I have the tomcat-jk2.jar. How do I use this jar? Any pointers to docs would be very

Re: configuring tomcat to run behind iPlanet Web Server...

2002-07-10 Thread Sesha Nandyal
ationbtnG=Google+Search John Turner [EMAIL PROTECTED] -Original Message- From: Sesha Nandyal [mailto:[EMAIL PROTECTED]] Sent: Wednesday, July 10, 2002 11:57 AM To: [EMAIL PROTECTED] Subject: configuring tomcat to run behind iPlanet Web Server... How do I configure Tomcat to run behind

Re: configuring tomcat to run behind iPlanet Web Server...

2002-07-10 Thread Cunningham Emmett
Let me provide a few pointers. http://developer.iplanet.com/docs/technote/webserver/migratin.html The short story is to use the NSAPI redirector and AJP13. Configure the AJP13 Connection handler in server.xml. The redirector is typically included in the tomcat distribution. Though some

<    1   2   3   4   >