RE: Tomcat using VERY LARGE Memory (URGENT!!!!!!!!!)

2002-12-16 Thread Jeremy Joslin
The -X VM options will work with Sun VM's, your mileage may vary when used with others. You can read all about it here: http://java.sun.com/docs/hotspot/VMOptions.html Jeremy -Original Message- From: Ming Zhao [mailto:[EMAIL PROTECTED]] Sent: Monday, December 16, 2002 10:19 AM To:

RE: javac Memory Leak: STATUS request

2002-12-16 Thread Jeremy Joslin
I don't know where you can get more information about this but have you considered using jikes instead of javac? I don't know of any issues with jikes and its s much faster than javac :-) Jeremy -Original Message- From: Dan Payne [mailto:[EMAIL PROTECTED]] Sent: Monday, December

RE: Threads of Control

2002-12-08 Thread Jeremy Joslin
U e...sure you could do that but you should ask yourself is this the right thing to do? If the sample code you provided is similar to what you're trying to implement I would recommend that you right your own Runnable object and control it's lifetime using a ServeltContextListener object.

RE: Thread dump

2002-12-06 Thread Jeremy Joslin
There's a whitepaper about it located here: http://developer.java.sun.com/developer/technicalArticles/Programming/Stackt race/ Jeremy -Original Message- From: Ben Ricker [mailto:[EMAIL PROTECTED]] Sent: Friday, December 06, 2002 12:58 PM To: Tomcat Users List Subject: RE: Thread

RE: How to set JVM memory size?

2002-12-05 Thread Jeremy Joslin
It's important to realize that this is setting the size of the Java heap within the JVM (which sounds like what you're looking for) and not the actual size of the JVM itself. Also note that you're not always going to get the best performance out of your app by using a large heap size because

RE: how many linux processes should tomcat create???

2002-12-05 Thread Jeremy Joslin
Java threads under Linux show up as individual processes when you do a top or anything similar. The number of threads (Linux processes) that Tomcat creates will of course depend on the application you're deploying, i.e. if your app starts up a lot of threads for whatever reason you're going to

RE: Mutliuser setup

2002-12-04 Thread Jeremy Joslin
Start out by looking at #4 on the list here: http://jakarta.apache.org/tomcat/tomcat-4.0-doc/RUNNING.txt Jeremy -Original Message- From: Rolf Borgen Guescini [mailto:[EMAIL PROTECTED]] Sent: Wednesday, December 04, 2002 8:13 AM To: [EMAIL PROTECTED] Subject: Mutliuser setup Does

RE: Redirecting requests back to the webserver from tomcat

2002-12-02 Thread Jeremy Joslin
I don't know what your setup it but it might be worth your while to look at the Proxy Support how-to located here: http://jakarta.apache.org/tomcat/tomcat-4.0-doc/proxy-howto.html Jeremy -Original Message- From: Prashanth Pushpagiri [mailto:[EMAIL PROTECTED]] Sent: 1. desember 2002

RE: How to set Multiple instances for tomcat?

2002-12-02 Thread Jeremy Joslin
This is a pretty vague question so you're going to get a vague answer. Look at http://jakarta.apache.org/tomcat/tomcat-4.0-doc/RUNNING.txt item #4. Jeremy -Original Message- From: Tushar Kulkarni [mailto:[EMAIL PROTECTED]] Sent: Saturday, December 01, 2001 9:19 AM To: Tomcat Users

RE: Socket GURU'S PLEASE HELP ON OBSCURE PROBLEM

2002-12-02 Thread Jeremy Joslin
Looks like you're trying to implement a small webserver but you're not obeying the HTTP spec. You need to read the entire request in from the client before responding and you should send the appropriate response header, e.g. HTTP/1.1 200 OK, or your results will be unpredictable. The reason you

RE: Socket GURU'S PLEASE HELP ON OBSCURE PROBLEM [OFFTOPIC]

2002-12-02 Thread Jeremy Joslin
The condition in your while loop is incorrect. BufferedReader.readLine() is only going to return null when the end of the stream is reached, i.e. when the client closes the socket either fully or partially. What you really need to test for as a condition for the end of the input are two

RE: How do I integrate my CLASSPATH on Tomcat?

2002-11-27 Thread Jeremy Joslin
Have a look at the class loader HOW-TO located here: http://jakarta.apache.org/tomcat/tomcat-4.1-doc/class-loader-howto.html, it should answer most of your questions. If you're still having trouble please post a more detailed description. Jeremy -Original Message- From: [EMAIL

RE: War files and config info

2002-04-08 Thread Jeremy Joslin
this helps. Jeremy Joslin Software Engineer Spotlife Inc. -Original Message- From: Bryan P. Glennon [mailto:[EMAIL PROTECTED]] Sent: Monday, April 08, 2002 3:24 PM To: [EMAIL PROTECTED] Subject: War files and config info Hi - We have a web app that gets distributed in a war

RE: TC Performance Testing

2002-03-28 Thread Jeremy Joslin
-Original Message- From: Dahnke, Eric [mailto:[EMAIL PROTECTED]] Sent: Thursday, March 28, 2002 9:14 AM To: 'Tomcat Users List' Subject: RE: TC Performance Testing I have tested Apache 1.3.x and IIS serving static pages using these parameters and both display about 2x the

RE: Tomcat/Struts Profiling results

2002-03-04 Thread Jeremy Joslin
you stated that. Specifically I'd be interested in the configuration of your tomcat connector(s). Jeremy Joslin Software Engineer SpotLife Inc. http://www.spotlife.net -- To unsubscribe: mailto:[EMAIL PROTECTED] For additional commands: mailto:[EMAIL PROTECTED] Troubles with the list: mailto

RE: Double-byte character support in TC 4.0.1

2002-03-04 Thread Jeremy Joslin
If you're encoding characters 127 using the URLEncoder class it would be worth your time to examine this bug report: http://developer.java.sun.com/developer/bugParade/bugs/4354951.html Jeremy Joslin Software Engineer Spotlife Inc. http://www.spotlife.net -Original Message- From: Toru