RE: Getting Apache2 forwarding to tomcat5

2005-10-12 Thread Richard Mixon
features and better load balancing. HTH - Richard -Original Message- From: Dan Chesmore [mailto:[EMAIL PROTECTED] Sent: Tuesday, October 11, 2005 4:22 PM To: Tomcat Users List Subject: Getting Apache2 forwarding to tomcat5 I have read about 25 different websites on getting this setup. I

Re: Getting Apache2 forwarding to tomcat5

2005-10-12 Thread Dan Chesmore
Thank you very much. That did the trick. On Tue, 2005-10-11 at 16:58 -0700, Lyndon Tiu wrote: Hello, 1) It is recommended to use mod_jk version 1 as version 2 is deprecated and anything that is new in version 2 has been rolled into version 1. 2) All you need is this in server.xml:

Getting Apache2 forwarding to tomcat5

2005-10-11 Thread Dan Chesmore
I have read about 25 different websites on getting this setup. I have read through this list trying to find the answer I need. I have spent the last 2 days and soon 3rd day trying to get this working. I need Apache to forward port 80 and 443 requests to tomcat to 8080 and 8443. I am working on the

Re: Getting Apache2 forwarding to tomcat5

2005-10-11 Thread Lyndon Tiu
Hello, 1) It is recommended to use mod_jk version 1 as version 2 is deprecated and anything that is new in version 2 has been rolled into version 1. 2) All you need is this in server.xml: !-- Define a Coyote/JK2 AJP 1.3 Connector on port 8009 -- Connector port=8009

how to disable jk2 and enable jk1 on Tomcat5 with Apache 1.3

2005-10-06 Thread alebu
On Tomcat startup there is info message that indicates that tomcat starts using jk2. As I understand, that cames from that line in server.xml: Connector port=8009 enableLookups=false redirectPort=8443 debug=0 protocol=AJP/1.3 / How to disable jk2 and prevent tomcat to use jk1.2 ?

Re: how to disable jk2 and enable jk1 on Tomcat5 with Apache 1.3

2005-10-06 Thread Mark Thomas
alebu wrote: On Tomcat startup there is info message that indicates that tomcat starts using jk2. As I understand, that cames from that line in server.xml: Connector port=8009 enableLookups=false redirectPort=8443 debug=0 protocol=AJP/1.3 / How to disable jk2 and prevent tomcat to use jk1.2 ?

Add context to URI (Tomcat5/Apache2)

2005-10-05 Thread Benjamin Lerman
Hi all, I'm looking through docs and FAQs, but I cannot find how to do the following. I use Tomcat5 and Apache2. My apache server can accede the tomcat server, and things like: [uri:/manager/*] info=A scriptable management web application for the Tomcat Web Server. debug=0 in the workers2

RE: SSL mutual communication problem with Tomcat5 --- Remote host closed connection during handshake

2005-09-14 Thread Xia, Hong
: SSL mutual communication problem with Tomcat5 --- Remote host closed connection during handshake Hector Adolfo Alonso wrote: Hi Xia: I think you cannot use an self-signed certificate (as keytool generates) for mutual authentication. User certificate's certificate authority signer shoul

RE: SSL mutual communication problem with Tomcat5 --- Remote host closed connection during handshake

2005-09-14 Thread Xia, Hong
Thomas [mailto:[EMAIL PROTECTED] Sent: Tuesday, September 13, 2005 5:12 PM To: Tomcat Users List Subject: Re: SSL mutual communication problem with Tomcat5 --- Remote host closed connection during handshake Hector Adolfo Alonso wrote: Hi Xia: I think you cannot use an self-signed certificate

Re: SSL mutual communication problem with Tomcat5 --- Remote host closed connection during handshake

2005-09-14 Thread Mark Thomas
Xia, Hong wrote: Hi, Mark, I have the both server and client .cer imported to cacerts but the problem persists commands to generate the server and client key: Keytool -genkey -alias server -keyalg RSA -keystore serverstore.jks Keytool -genkey -alias client -keyalg RSA -keystore

RE: SSL mutual communication problem with Tomcat5 --- Remote host closed connection during handshake

2005-09-14 Thread Xia, Hong
root? -Original Message- From: Mark Thomas [mailto:[EMAIL PROTECTED] Sent: Wednesday, September 14, 2005 1:51 PM To: Tomcat Users List Subject: Re: SSL mutual communication problem with Tomcat5 --- Remote host closed connection during handshake Xia, Hong wrote: Hi, Mark, I have

SSL mutual communication problem with Tomcat5 --- Remote host closed connection during handshake

2005-09-13 Thread Xia, Hong
Hello, I am trying to set up Tomcat5 ( as standalone web server ) with https mutal authentication. There is the connector config Connector port=443 maxHttpHeaderSize=8192 maxThreads=150 minSpareThreads=25 maxSpareThreads=75 enableLookups=true disableUploadTimeout

Re: SSL mutual communication problem with Tomcat5 --- Remote host closed connection during handshake

2005-09-13 Thread Mark Thomas
Xia, Hong wrote: Hello, I am trying to set up Tomcat5 ( as standalone web server ) with https mutal authentication. There is the connector config Connector port=443 maxHttpHeaderSize=8192 maxThreads=150 minSpareThreads=25 maxSpareThreads=75 enableLookups=true

RE: SSL mutual communication problem with Tomcat5 --- Remote host closed connection during handshake

2005-09-13 Thread Xia, Hong
the import. -Original Message- From: Mark Thomas [mailto:[EMAIL PROTECTED] Sent: Tuesday, September 13, 2005 2:56 PM To: Tomcat Users List Subject: Re: SSL mutual communication problem with Tomcat5 --- Remote host closed connection during handshake Xia, Hong wrote: Hello, I am trying

Re: SSL mutual communication problem with Tomcat5 --- Remote host closed connection during handshake

2005-09-13 Thread Mark Thomas
Xia, Hong wrote: Thanks for your help Mark. When I imported the client cert, I pick the 'Automatically select the certificate store ...' option and the certificate appeared under the Trusted Root. I tried to place the certificate under Personal and Other People but the certificate did not

Re: SSL mutual communication problem with Tomcat5 --- Remote host closed connection during handshake

2005-09-13 Thread Hector Adolfo Alonso
. I'm sure there is a more technical and deep explanation, but I hope this help. Hector./ Xia, Hong wrote: Hello, I am trying to set up Tomcat5 ( as standalone web server ) with https mutal authentication. There is the connector config Connector port=443 maxHttpHeaderSize=8192

Re: SSL mutual communication problem with Tomcat5 --- Remote host closed connection during handshake

2005-09-13 Thread Mark Thomas
Hector Adolfo Alonso wrote: Hi Xia: I think you cannot use an self-signed certificate (as keytool generates) for mutual authentication. User certificate's certificate authority signer shoul be the same that signs the server certificate. In this case, the server certificate is self-signed.

Re: Trying to connect tomcat5 with postgresql database

2005-09-12 Thread pacea
:[EMAIL PROTECTED] Sent: Saturday, September 10, 2005 7:49 AM To: Tomcat Users List Subject: Re: Trying to connect tomcat5 with postgresql database This is my configuration server.xml Resource name=jdbc/guidebook auth

RE: Trying to connect tomcat5 with postgresql database

2005-09-12 Thread Mattier, Ricardo
: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Monday, September 12, 2005 6:16 AM To: Tomcat Users List Subject: Re: Trying to connect tomcat5 with postgresql database And make sure the driver you downloaded matches your server version. Also, for some reason, my setup wouldn't work until I

RE: Trying to connect tomcat5 with postgresql database

2005-09-12 Thread Mattier, Ricardo
-2084 Email: [EMAIL PROTECTED] -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Monday, September 12, 2005 6:16 AM To: Tomcat Users List Subject: Re: Trying to connect tomcat5 with postgresql database And make sure the driver you downloaded matches your server

Re: Trying to connect tomcat5 with postgresql database

2005-09-12 Thread David Smith
PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Monday, September 12, 2005 6:16 AM To: Tomcat Users List Subject: Re: Trying to connect tomcat5 with postgresql database And make sure the driver you downloaded matches your server version. Also, for some reason, my setup wouldn't work until I renamed

RE: Trying to connect tomcat5 with postgresql database

2005-09-12 Thread Mattier, Ricardo
:[EMAIL PROTECTED] Sent: Monday, September 12, 2005 9:38 AM To: Tomcat Users List Subject: Re: Trying to connect tomcat5 with postgresql database Depends on how you are deploying your app. 1) If deploying as an expanded folder, name the context.xml file after your webapp and place it in conf/Catalina

Re: Trying to connect tomcat5 with postgresql database

2005-09-12 Thread David Haynes
Rick, Until you are comfortable with all this, may I suggest you download the NetBeans IDE (if company policy allows it) and see how they are setting everything up? NetBeans has a good template for a war distributed web-app and gives you a friendly way to deploy your war file to a TomCat

RE: Trying to connect tomcat5 with postgresql database

2005-09-11 Thread Mattier, Ricardo
I duplicated your configuration for the server.xml file, and I came up with the same error. -Original Message- From: Edoardo Panfili [mailto:[EMAIL PROTECTED] Sent: Saturday, September 10, 2005 7:49 AM To: Tomcat Users List Subject: Re: Trying to connect tomcat5 with postgresql database

RE: Trying to connect tomcat5 with postgresql database

2005-09-11 Thread Mattier, Ricardo
I'm using tomcat 5.5, and postgresql 8.0.1 -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Friday, September 09, 2005 9:08 PM To: Tomcat Users List Subject: Re: Trying to connect tomcat5 with postgresql database Sorry for the last post. Try

Re: Trying to connect tomcat5 with postgresql database

2005-09-11 Thread Edoardo Panfili
. -Original Message- From: Edoardo Panfili [mailto:[EMAIL PROTECTED] Sent: Saturday, September 10, 2005 7:49 AM To: Tomcat Users List Subject: Re: Trying to connect tomcat5 with postgresql database This is my configuration server.xml

Re: Trying to connect tomcat5 with postgresql database

2005-09-11 Thread David Smith
- From: Edoardo Panfili [mailto:[EMAIL PROTECTED] Sent: Saturday, September 10, 2005 7:49 AM To: Tomcat Users List Subject: Re: Trying to connect tomcat5 with postgresql database This is my configuration server.xml Resource name=jdbc

Re: Trying to connect tomcat5 with postgresql database

2005-09-10 Thread Edoardo Panfili
= (DataSource) ambiente.lookup(jdbc/lisy); Connection c=pool.getConnection(); == I am using Postgres 7.4 and Tomcat 5.0 Edoardo Mattier, Ricardo wrote: Hello, I'm currently working with Tomcat5 on Solaris10 x86 machine. I'm running

Trying to connect tomcat5 with postgresql database

2005-09-09 Thread Mattier, Ricardo
Hello, I'm currently working with Tomcat5 on Solaris10 x86 machine. I'm running into problems when trying to access a postgresql 8.0.1 database on the local machine. Cannot create JDBC driver of class '' for connect URL null' is the error I receive when trying to establish a connection

Re: Trying to connect tomcat5 with postgresql database

2005-09-09 Thread pacea
Should be Context ctx = new InitialContext(); Hello, I'm currently working with Tomcat5 on Solaris10 x86 machine. I'm running into problems when trying to access a postgresql 8.0.1 database on the local machine. Cannot create JDBC driver of class '' for connect URL null

Re: Trying to connect tomcat5 with postgresql database

2005-09-09 Thread pacea
currently working with Tomcat5 on Solaris10 x86 machine. I'm running into problems when trying to access a postgresql 8.0.1 database on the local machine. Cannot create JDBC driver of class '' for connect URL null' is the error I receive when trying to establish a connection. Here's the snipet

failure to install tomcat5 service check settings and permissions

2005-09-02 Thread bachoo jahnkar
Hi, I had tomcat 4.0.3 and tomcat 5.0 on the dev box. I have uninstalled the tomcat 5.0. I am trying to install tomcat 5.5.9 and i am getting the following error USING JVM c:\jdk1.4.2_04\jre\bin\jvm.dll failure to install tomcat service check settings and permissions I tried few

Re: failure to install tomcat5 service check setti ngs and permissions

2005-09-02 Thread jmail
@jakarta.apache.org Data: Fri, 2 Sep 2005 11:05:55 -0700 (PDT) Temat: failure to install tomcat5 service check settings and permissions Hi, I had tomcat 4.0.3 and tomcat 5.0 on the dev box. I have uninstalled the tomcat 5.0. I am trying to install tomcat 5.5.9 and i am getting

Re: failure to install tomcat5 service check settings and permissions

2005-09-02 Thread bachoo jahnkar
://java.sun.com And now It works. jmail Wiadomo¶æ Oryginalna Od: bachoo jahnkar Do: Tomcat Users List Data: Fri, 2 Sep 2005 11:05:55 -0700 (PDT) Temat: failure to install tomcat5 service check settings and permissions Hi, I had tomcat 4.0.3 and tomcat 5.0 on the dev box. I have uninstalled

Re: failure to install tomcat5 service check setti ngs and permissions

2005-09-02 Thread jmail
) Temat: Re: failure to install tomcat5 service check settings and permissions I installed j2sdk1.4.2_08 today. I had java1.3. Is this good or do i have to get a newer one? Manu jmail [EMAIL PROTECTED] wrote: Hey. Have you got the newest java? I had got the same problem yesterday installing

Re: errors building tomcat5 from source

2005-09-01 Thread Tim Funk
The location to download junit may have changed or that version might not be available for download. See build.properties.default for where it is being downloaded and change it there OR copy that entry with a valid URL to build.properties. -Tim Michael P. Soulier wrote: Hi, I didn't see

Re: errors building tomcat5 from source

2005-09-01 Thread Michael P. Soulier
Caldarale, Charles R wrote: Just curious, but why do you want to build it from source? Tomcat is pure Java, so the same download works on all platforms. I'm packaging it, and I want the source included. Besides, I was trying to learn to use ant, so I thought I'd try building it. Imagine my

Re: errors building tomcat5 from source

2005-09-01 Thread Michael P. Soulier
Tim Funk wrote: The location to download junit may have changed or that version might not be available for download. See build.properties.default for where it is being downloaded and change it there OR copy that entry with a valid URL to build.properties. Ok. Perhaps I'm missing something,

errors building tomcat5 from source

2005-08-31 Thread Michael P. Soulier
Hi, I didn't see this in the FAQ, so I'm asking. I'm trying to build tomcat 5.5.9 from the source tarball on my Linux box. Unfortunately, I'm getting this. downloadzip: [get] Getting: http://unc.dl.sourceforge.net/sourceforge/junit/junit3.8.1.zip [get] To:

RE: errors building tomcat5 from source

2005-08-31 Thread Caldarale, Charles R
From: Michael P. Soulier [mailto:[EMAIL PROTECTED] Subject: errors building tomcat5 from source I didn't see this in the FAQ, so I'm asking. I'm trying to build tomcat 5.5.9 from the source tarball on my Linux box. Just curious, but why do you want to build it from source? Tomcat is pure

Tomcat5 and apache2 dont want to cooperate please help!!

2005-08-30 Thread yel
Dear list subscriber, im now working on this since two weeks and i just can progress with it so i really need some urgent help on this issue what i intent to do is to use tomcate behinde apache as a servlet container and i tried many howto out there on the web but none of them was the right one

Tomcat5 / war file deployment: symlink problem

2005-08-16 Thread Alan Cooper
I have a tomcat5 installation running on a RHEL ES3 box which I am having some issues with. I have a symlink back to an images directory which is outside the context. This works fine and I can read the images etc. The problem occurs when I redeploy the context through the manager webapp

Re: Tomcat5 / war file deployment: symlink problem

2005-08-16 Thread Darryl L. Miles
Alan Cooper wrote: I have a tomcat5 installation running on a RHEL ES3 box which I am having some issues with. I have a symlink back to an images directory which is outside the context. This works fine and I can read the images etc. The problem occurs when I redeploy the context through

Re: how do i prevent tomcat5 from adding trailing slash?

2005-07-04 Thread Edmund Urbani
Bill Barker wrote: Edmund Urbani [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] hi! i ran into some trouble with tomcat5 and its slash adding behaviour. there's this MS WebFolder client (M$ for WebDAV), that does not seem to be able to cope with status 302 redirects in some

how do i prevent tomcat5 from adding trailing slash?

2005-07-01 Thread Edmund Urbani
hi! i ran into some trouble with tomcat5 and its slash adding behaviour. there's this MS WebFolder client (M$ for WebDAV), that does not seem to be able to cope with status 302 redirects in some situations. in order to work around this problem i modified the class

RE: how do i prevent tomcat5 from adding trailing slash?

2005-07-01 Thread Sheets, Jerald
01, 2005 9:43 AM To: tomcat-user@jakarta.apache.org Subject: how do i prevent tomcat5 from adding trailing slash? hi! i ran into some trouble with tomcat5 and its slash adding behaviour. there's this MS WebFolder client (M$ for WebDAV), that does not seem to be able to cope with status 302

Re: how do i prevent tomcat5 from adding trailing slash?

2005-07-01 Thread Mladen Turk
Sheets, Jerald wrote: In your mod_jk.conf, you have JkMount directives like so: JkMount /servlet/* ajp13 JkMount /jsp-examples/* ajp13 JkMount /servlets-examples/* ajp13 I find that in your mounts that if you simply remove the trailing slash in these, you can then call those URIs without the

Re: how do i prevent tomcat5 from adding trailing slash?

2005-07-01 Thread Edmund Urbani
@jakarta.apache.org Subject: how do i prevent tomcat5 from adding trailing slash? hi! i ran into some trouble with tomcat5 and its slash adding behaviour. there's this MS WebFolder client (M$ for WebDAV), that does not seem to be able to cope with status 302 redirects in some situations. in order

RE: how do i prevent tomcat5 from adding trailing slash?

2005-07-01 Thread Sheets, Jerald
Works here... -Original Message- From: Edmund Urbani [mailto:[EMAIL PROTECTED] Sent: Friday, July 01, 2005 10:17 AM To: Tomcat Users List Subject: Re: how do i prevent tomcat5 from adding trailing slash? actually i'm currently using a standalone tomcat with its own http connector

Re: how do i prevent tomcat5 from adding trailing slash?

2005-07-01 Thread Bill Barker
Edmund Urbani [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] hi! i ran into some trouble with tomcat5 and its slash adding behaviour. there's this MS WebFolder client (M$ for WebDAV), that does not seem to be able to cope with status 302 redirects in some situations. in order

Tomcat5+jk2... /manager/html

2005-06-01 Thread Gordon Schmidt
Hallo, after I got my iis6.0-webserver with jk2_connector and my application-server with tomcat 5 working, I have some problems: I can call the tomcat-startside via the IIs-Server on port 80, or I can call the tomcat-Server directly. But if I want to go to the /manager/html,

Tomcat5+jk2... /manager/html

2005-06-01 Thread Gordon Schmidt
Hallo, after I got my iis6.0-webserver with jk2_connector and my application-server with tomcat 5 working, I have some problems: I can call the tomcat-startside via the IIs-Server on port 80, or I can call the tomcat-Server directly. But if I want to go to the /manager/html,

migrating from oc4j to tomcat5.X

2005-05-23 Thread Brian . Allen
Is there any info for migrating apps from oc4j to tomcat5.x? thanks

Re: migrating from oc4j to tomcat5.X

2005-05-23 Thread Mark Thomas
[EMAIL PROTECTED] wrote: Is there any info for migrating apps from oc4j to tomcat5.x? thanks oc4j is a both a EJB container and a Servlet container. If your app uses EJBs it won't ever work on Tomcat. If you have a .war files that has been constructed as per the servlet spec it shouldn't need

Tomcat5 Port 8009 Monitoring

2005-05-17 Thread David Kaplowitz
will pick it up and send an alert. Recently, however, we've introduced some Tomcat5 servers into our environment. We moved our BigBrother monitoring scripts to the new servers and they are showing up and down pretty much constantly. We're not seeing any performance issues, services are running just

Tomcat5 Service

2005-04-19 Thread Ferguson, Richard E
Hi, I am new to this and Tomcat and Java are not my specialties! What I need to accomplish is an install the Tomcat5 service with a log on account in a silent and unattended mode. The vendor that has supplied the Tomcat5 install has StartMode = jvm, so I am unable to use the -User command

Answer: Tomcat5 port redirect issue

2005-03-24 Thread Dan
I figured I would post this in answer to my own question, just in case anyone else has the same problem. The issue was I two boxes set up one had apache, and tomcat on it, the other just had tomcat. The box with apache, and tomcat had tomcat running something unrelated to the secondary box.  

RE: [QUAR]Re: Tomcat5 and Client Certificates

2005-03-07 Thread Sweeney, Bill
Message- From: news [mailto:[EMAIL PROTECTED] On Behalf Of Bill Barker Sent: Saturday, March 05, 2005 3:27 PM To: tomcat-user@jakarta.apache.org Subject: [QUAR]Re: Tomcat5 and Client Certificates Jason Bainbridge [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] On Fri, 4 Mar 2005 06

Re: Tomcat5 and Client Certificates

2005-03-05 Thread Bill Barker
Jason Bainbridge [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] On Fri, 4 Mar 2005 06:54:34 -0800, Sweeney, Bill [EMAIL PROTECTED] wrote: Hello TC5 Users - I used %java-home%/bin/keytool to build the certificate store and the server and client certificates (self-signed). Tomcat

Tomcat5 and Client Certificates

2005-03-04 Thread Sweeney, Bill
Hello TC5 Users - I am setting up Tomcat 5 in a production environment. The requirement is to lock down the site so that only users with trusted personal certificates may access the site. I believe I have everything configured in server.xml. Connector port=443 maxThreads=150

Re: Tomcat5 and Client Certificates

2005-03-04 Thread Jason Bainbridge
On Fri, 4 Mar 2005 06:54:34 -0800, Sweeney, Bill [EMAIL PROTECTED] wrote: Hello TC5 Users - I used %java-home%/bin/keytool to build the certificate store and the server and client certificates (self-signed). Tomcat asks for the client certificate when I try and connect, but - here is the

Re: Tomcat5 and Client Certificates

2005-03-04 Thread Jason Bainbridge
On Fri, 4 Mar 2005 06:54:34 -0800, Sweeney, Bill [EMAIL PROTECTED] wrote: Hello TC5 Users - I used %java-home%/bin/keytool to build the certificate store and the server and client certificates (self-signed). Tomcat asks for the client certificate when I try and connect, but - here is the

Re: Preferred Platform for Tomcat5

2005-02-04 Thread Hari Mailvaganam
better with Tomcat5? What are members of this list using for a production installation of Tomcat? - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Preferred Platform for Tomcat5

2005-02-03 Thread Todd Reed
Excluding Windows, is there a particular platform that works better with Tomcat5? What are members of this list using for a production installation of Tomcat?

RE: Preferred Platform for Tomcat5

2005-02-03 Thread Didier McGillis
noticable slowdown on the 384MB machine, but its a piece of ... ummm .. e ... fine craftsmanship to begin with. From: Todd Reed [EMAIL PROTECTED] Reply-To: Tomcat Users List tomcat-user@jakarta.apache.org To: tomcat-user@jakarta.apache.org Subject: Preferred Platform for Tomcat5 Date: Thu, 3 Feb

Re: Preferred Platform for Tomcat5

2005-02-03 Thread Parsons Technical Services
: Thursday, February 03, 2005 10:26 AM Subject: RE: Preferred Platform for Tomcat5 I have many. Tomcat 4,5 On Intel - Windows 2000 - MySQL - SQL2000 - Windows XP - MySQL - Debain - MySQL - Solaris 10 - Oracle - DB2 - Redhat 9 (2machines) - MySQL - Mac OSX - MySQL - Fedora 2 - MySQL - Redhat

Re: Preferred Platform for Tomcat5

2005-02-03 Thread Didier McGillis
List tomcat-user@jakarta.apache.org To: Tomcat Users List tomcat-user@jakarta.apache.org Subject: Re: Preferred Platform for Tomcat5 Date: Thu, 3 Feb 2005 12:00:49 -0500 TAO www.taolinux.org RHEL clone. PIII 750 512M Tomcat 5.0.19 JVM 1.4.2.x MySQL Small site with one week of punishment. Handled

Re: Preferred Platform for Tomcat5

2005-02-03 Thread Peter Lin
Subject: RE: Preferred Platform for Tomcat5 I have many. Tomcat 4,5 On Intel - Windows 2000 - MySQL - SQL2000 - Windows XP - MySQL - Debain - MySQL - Solaris 10 - Oracle - DB2 - Redhat 9 (2machines) - MySQL - Mac OSX - MySQL - Fedora 2 - MySQL - Redhat Enterprise 2 - MySQL

Re: Preferred Platform for Tomcat5

2005-02-03 Thread Didier McGillis
PROTECTED] Reply-To: Peter Lin [EMAIL PROTECTED] To: Tomcat Users List tomcat-user@jakarta.apache.org Subject: Re: Preferred Platform for Tomcat5 Date: Thu, 3 Feb 2005 12:17:39 -0500 Wow, I thought my home dev environment was old and slow. makes me wonder how many people bother to upgrade to the latest

[OT] RE: Preferred Platform for Tomcat5

2005-02-03 Thread Peter Crowther
From: Peter Lin [mailto:[EMAIL PROTECTED] makes me wonder how many people bother to upgrade to the latest/newest hardware :) Fewer as the hardware becomes 'fast enough'. For example, up until 2001, the training centre I managed still used three Linux firewalls I'd built. 486SX/25, 8Mbytes,

Re: [OT] RE: Preferred Platform for Tomcat5

2005-02-03 Thread Parsons Technical Services
: Thursday, February 03, 2005 12:40 PM Subject: [OT] RE: Preferred Platform for Tomcat5 From: Peter Lin [mailto:[EMAIL PROTECTED] makes me wonder how many people bother to upgrade to the latest/newest hardware :) Fewer as the hardware becomes 'fast enough'. For example, up until 2001

Re: Preferred Platform for Tomcat5

2005-02-03 Thread Paul
drives mysql 4.1.x jdk1.5.x tomcat 5.0.x Regards, -Paul Todd Reed wrote: Excluding Windows, is there a particular platform that works better with Tomcat5? What are members of this list using for a production installation of Tomcat

Re: Preferred Platform for Tomcat5

2005-02-03 Thread Ben Ricker
better with Tomcat5? What are members of this list using for a production installation of Tomcat? - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] -- Ben Ricker

Re: Preferred Platform for Tomcat5

2005-02-03 Thread Ben Ricker
@jakarta.apache.org, Tomcat Users List tomcat-user@jakarta.apache.org Subject: Re: Preferred Platform for Tomcat5 I have one word of advice: DON'T USE AIX! I am in the middle of a (forced) migration from Solaris to AIX and it sucks ball peen hammers. The Solaris installs were running like a top

Tomcat 5.5.x Specify JVM Memory Options using Tomcat5 on Windows

2005-01-19 Thread migar
with this. I am upgrading from Tomcat 4.1 where I was comfortable editing the catalina.bat/sh scripts to specify the JAVA_OPTS passed to the JVM, however with 5.5 (at least in a windows install), this option for starting Tomcat is gone and it can only be started via Tomcat5.exe. That's fine, except I

Re: Tomcat5 java.lang.OutOfMemoryError

2005-01-17 Thread David Johnson
Claudia COGA[EMAIL PROTECTED] To: 'Tomcat Users List'tomcat-user@jakarta.apache.org Date: Mon Jan 10 10:49:20 PST 2005 Subject: Tomcat5 java.lang.OutOfMemoryError Hello all: I have problems with memory in Tomcat, this happen when the servlet try to forward the result jsp only if the result

RE: Tomcat5 java.lang.OutOfMemoryError

2005-01-12 Thread Furash Gary
11, 2005 5:32 PM To: tomcat-user@jakarta.apache.org Subject: Re: Tomcat5 java.lang.OutOfMemoryError I posted a how-to on this just yesterday I think. Try the archives. It's typically a good idea to check there before you post. -Original Message- From: SARMIENTO Claudia COGA[EMAIL

RE: Tomcat5 java.lang.OutOfMemoryError

2005-01-12 Thread Furash Gary
) -Original Message- From: Ryan Stewart [mailto:[EMAIL PROTECTED] Sent: Tuesday, January 11, 2005 5:32 PM To: tomcat-user@jakarta.apache.org Subject: Re: Tomcat5 java.lang.OutOfMemoryError I posted a how-to on this just yesterday I think. Try the archives. It's typically a good idea

Re: Tomcat5 java.lang.OutOfMemoryError

2005-01-11 Thread Ryan Stewart
: Tomcat5 java.lang.OutOfMemoryError Hello all: I have problems with memory in Tomcat, this happen when the servlet try to forward the result jsp only if the result is too big (a set of rows in a period date) Th bean doesn't have problems, but the servlet yes, so i think i need to change my

RE: apache2 tomcat5 jk2 questions

2005-01-10 Thread Casas, Claudia
To: Tomcat Users List Subject: Re: apache2 tomcat5 jk2 questions On Fri, Jan 07, 2005 at 06:02:14PM +0100, Nikola Milutinovic wrote: : Sorry. I was as bitten by the news as you are. The thing is, if it is : working, not only shouldn't you fix it, but relax. JK2 is OK - if it : works. It is a stable

Tomcat5 java.lang.OutOfMemoryError

2005-01-10 Thread SARMIENTO Claudia COGA
Hello all: I have problems with memory in Tomcat, this happen when the servlet try to forward the result jsp only if the result is too big (a set of rows in a period date) Th bean doesn't have problems, but the servlet yes, so i think i need to change my configuration to set more memory at

RES: Tomcat5 java.lang.OutOfMemoryError

2005-01-10 Thread Roberto Rios
2005 16:49 Para: 'Tomcat Users List' Assunto: Tomcat5 java.lang.OutOfMemoryError Hello all: I have problems with memory in Tomcat, this happen when the servlet try to forward the result jsp only if the result is too big (a set of rows in a period date) Th bean doesn't have problems, but the servlet

Re: apache2 tomcat5 jk2 questions

2005-01-07 Thread Nikola Milutinovic
Casas, Claudia wrote: No way! I just got my server completely working on jk2! Does anybody have any links or resources that talk about this. If this is really a big issue, I will definitely move back to jk Sorry. I was as bitten by the news as you are. The thing is, if it is working, not only

Re: apache2 tomcat5 jk2 questions

2005-01-07 Thread QM
On Fri, Jan 07, 2005 at 06:02:14PM +0100, Nikola Milutinovic wrote: : Sorry. I was as bitten by the news as you are. The thing is, if it is : working, not only shouldn't you fix it, but relax. JK2 is OK - if it : works. It is a stable mechanism, it is just not going to be developed : any more.

RE: apache2 tomcat5 jk2 questions

2005-01-06 Thread Casas, Claudia
To: Tomcat Users List Subject: Re: apache2 tomcat5 jk2 questions I believe that I have read that mod_jk2 was to stop being supported as of 11/15/04. It might be something to think about if you start seeing more bugs. I have reverted all of my boxes to mod_jk which serves just as fast for me. -j

RE: apache2 tomcat5 jk2 questions

2005-01-06 Thread Subir Sengupta
http://jakarta.apache.org/tomcat/tomcat-4.1-doc/jk2/news/20041100.html#2 0041115.1 -Original Message- From: Casas, Claudia [mailto:[EMAIL PROTECTED] Sent: Thursday, January 06, 2005 12:49 PM To: Tomcat Users List Subject: RE: apache2 tomcat5 jk2 questions No way! I just got my server

apache2 tomcat5 jk2 questions

2005-01-05 Thread Casas, Claudia
Hello everybody, I have configured jk2 successfully finally to work with apache and tomcat. #!Question 1 I have included the following in my server.xml file: Context path=/ccasas docBase=/home/ccasas/wwwdocs debug=0 reloadable=true crossContext=true /Context This allows me to see my jsp

Re: apache2 tomcat5 jk2 questions

2005-01-05 Thread Dwayne Ghant
Please Read your Documentation at this page http://myserver:8080/tomcat-docs/config/host.html and that should answer your question. Read the section that says: User Web Applications Casas, Claudia wrote: Hello everybody, I have configured jk2 successfully finally to work with apache and tomcat.

RE: apache2 tomcat5 jk2 questions

2005-01-05 Thread Casas, Claudia
[mailto:[EMAIL PROTECTED] Sent: Wednesday, January 05, 2005 11:03 AM To: Tomcat Users List Subject: Re: apache2 tomcat5 jk2 questions Please Read your Documentation at this page http://myserver:8080/tomcat-docs/config/host.html and that should answer your question. Read the section that says: User

Re: apache2 tomcat5 jk2 questions

2005-01-05 Thread Dwayne Ghant
List Subject: Re: apache2 tomcat5 jk2 questions Please Read your Documentation at this page http://myserver:8080/tomcat-docs/config/host.html and that should answer your question. Read the section that says: User Web Applications Casas, Claudia wrote: Hello everybody, I have configured jk2

Re: apache2 tomcat5 jk2 questions

2005-01-05 Thread j r
, January 05, 2005 11:03 AM To: Tomcat Users List Subject: Re: apache2 tomcat5 jk2 questions Please Read your Documentation at this page http://myserver:8080/tomcat-docs/config/host.html and that should answer your question. Read the section that says: User Web Applications Casas, Claudia

Tomcat5/Linux 2.6/NPTL/Java 1.4.2

2004-12-28 Thread arvind singh
Hi, I am running Suse Linux Enterprise Server 9.2 with, 1. Sun Java 1.4.2_03-b02 2. Kerne 2.6.5-7.79-smp 3. Tomcat version jakarta-tomcat-5.0.19-29.1 When running using NPTL, verified using ldd java the tomcat under heavy load i.e. 300 concurrent threads per second gradually leaks memory. A kill

SSL mutual authentication problem with Tomcat5

2004-11-18 Thread Ryan LeCompte
Hello, I'm trying to have a standalone Java client communicate via SSL with a remote Tomcat5 server. I'm setting the two system properties for specifying the SSL trust store path and trust store password. The client is able to successfully communicate via SSL when Tomcat is configured

RE: SSL mutual authentication problem with Tomcat5

2004-11-18 Thread Hubble, Christopher
] Subject: SSL mutual authentication problem with Tomcat5 Hello, I'm trying to have a standalone Java client communicate via SSL with a remote Tomcat5 server. I'm setting the two system properties for specifying the SSL trust store path and trust store password. The client is able to successfully

RE: Failed to install Tomcat5 service

2004-11-12 Thread Matteo Turra
Look at the page http://jakarta.apache.org/commons/daemon/procrun.html tomcat //IS//Tomcat5 --DisplayName Tomcat 5.0.12 \ --Description Tomcat 5.0.12 JDK 1.4 http://jakarta.apache.org; \ --ImagePath c:\devtools\tomcat\5.0\bin\bootstrap.jar \ --StartupClass

RE: Tiles and other sruts tags in Tomcat5

2004-11-01 Thread Shapira, Yoav
sruts tags in Tomcat5 Importance: High Could someone please explain why this is happening and how to correct it ? -Original Message- From: Geeth Narayanan Sent: Thursday, October 28, 2004 11:14 AM To: Tomcat Users List Subject: Tiles and other sruts tags in Tomcat5 Importance: High I am

RE: Tiles and other sruts tags in Tomcat5

2004-11-01 Thread Geeth Narayanan
01, 2004 8:06 AM To: Tomcat Users List Subject: RE: Tiles and other sruts tags in Tomcat5 Hi, Where is your Struts jar? Why don't you try asking on the struts-user list? ;) Yoav Shapira http://www.yoavshapira.com -Original Message- From: Geeth Narayanan [mailto:[EMAIL PROTECTED] Sent

Tomcat5, error when trying to access file in protected directory

2004-11-01 Thread Goldman, Stephen CIV SWRMC
I am running tomcat 5.0.24 with Apache 2.0 with SSL enabled. My problem is that if I try to open a word document or as a matter of fact any type of file located on the server (excluding jsp or html) in a protected directory, Internet explorer returns the error message The requested site

RE: Tomcat5, error when trying to access file in protected directory

2004-11-01 Thread Goldman, Stephen CIV SWRMC
Forgot to add that everything worked fine under Tomcat 4.1. Did not begin to experience this problem until the server was upgraded to 5 I am running tomcat 5.0.24 with Apache 2.0 with SSL enabled. My problem is that if I try to open a word document or as a matter of fact any type of file

RE: Tomcat5, error when trying to access file in protected directory

2004-11-01 Thread Goldman, Stephen CIV SWRMC
After examining the logs I believe that the problem has to do with the Coyote/JK2 AJP 1.3 connector. For some reason Cache-control is being set to no-cache and according to Microsoft (Q316431), under ssl these documents can not be opened. How do you change this setting to remove the no-cache?

  1   2   3   4   5   6   >