Re: How to optimize Tomcat SSL

2004-06-14 Thread Alex Burton
We use Apache HTTP on the front for SSL. Makes a world of difference. Cheers, Alex. Jeremy Conner wrote: Is there any way to optimize Tomcat's SSL implementation? Can I change the protocol to only use 40 bit encryption? Can I change the default keep alive time for the SSL session? Are there any

Re: Using Tomcat's HTTP processor and SSL

2004-06-14 Thread Alex Burton
We found the performance of Tomcat running SSL pretty useless in production. Is fine for development, but in production we run Apache HTTP in the front to off load the SSL number crunching into native code. Works a treat. Also gives you the benifit of being able to load balance multiple

[Fwd: Tomcat5.0.25 and Java Mail not seem to work]

2004-06-12 Thread Alex Burton
Hi all, I am currently porting an application from Tomcat 4.1.x to Tomcat 5.0.25. Everything is going fine except for JavaMail. In the application we have setup both database and JavaMail as Global Naming Resources. The database global work fine but I am getting the following with the Mail

Re: [Fwd: Tomcat5.0.25 and Java Mail not seem to work]

2004-06-12 Thread Alex Burton
Thanks Jake. Found same post just before and did exactly that. Solved my problem. Jacob Kjome wrote: Maybe because of this? http://nagoya.apache.org/bugzilla/show_bug.cgi?id=29255 Grab 5.0.26beta. Jake At 01:45 PM 6/13/2004 +1000, you wrote: Hi all, I am currently porting an application from

RE: Nightmare with Tomcat 4.1 and SSL configuration

2003-06-04 Thread Alex Burton
my 2cents would be to use apache on the front to do the SSL... -Original Message- From: Cosmin [mailto:[EMAIL PROTECTED] Sent: Wednesday, 4 June 2003 7:22 AM To: [EMAIL PROTECTED] Subject: Nightmare with Tomcat 4.1 and SSL configuration Hi there , I've just registered to this list in

RE: Tomcat Memory leaks!

2003-06-03 Thread Alex Burton
Try the option to fork off the JSP compiles (or even use Jikes to compile). There seems to be a problem with compiling of JSPs that does not use the usual memory you can allocate with the -Xmx type flag... maybe one of the guru's can explain this.. but we had similar problem that whe nwe moved to

RE: Tomcat Memory leaks!

2003-06-03 Thread Alex Burton
Memory leaks! Hi. I honestly have no idea what you are talking about. Can you explain what needs to be done for this? You talking about changing `javac`? Thanks -Original Message- From: Alex Burton [mailto:[EMAIL PROTECTED] Sent: Monday, June 02, 2003 11:12 PM To: Tomcat Users List Subject: RE

RE: IOException: failed to communicate with MySQL

2003-06-03 Thread Alex Burton
a couple of days ago a post went by talking about MySQL default timeout being set to 8 hrs for connections... betting this might be your problem... -Original Message- From: Mindaugas Genutis [mailto:[EMAIL PROTECTED] Sent: Tuesday, 3 June 2003 5:26 PM To: [EMAIL PROTECTED] Subject:

RE: Jaybird With Tomcat Part II

2003-05-29 Thread Alex Burton
Make sure the database resource is in the context you are accessing. Also make sure any classes JAR has .jar extension... .zip extenstion will not work. e.g. Accessing by http://www.mydomain.com/mydomain Host name=www.mydomain.com debug=1 appBase=virtual_hosts unpackWARs=true Context

RE: Multiple instances

2003-05-29 Thread Alex Burton
Why do you want to run separate instances for each application? Why not just setup more host inside one instance? -Original Message- From: Rohit Peyyeti [mailto:[EMAIL PROTECTED] Sent: Thursday, 29 May 2003 8:41 PM To: Tomcat Users List Subject: Multiple instances Hello Gurus: I have