Server refuse connection with many TIME_WAIT

2004-12-14 Thread V D
with the server. Using the command line netstat -a, and I still see many TIMEWAIT. Could this have something to do with gSoap, not Tomcat? Thanks, V D - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL

Re: Server refuse connection with many TIME_WAIT

2004-12-14 Thread V D
Thank you for the reply. I try to set |connectionTimeout to 1 seconds (down from default of 60 seconds), however, the result is almost identical. After about 3900-4000 request, the server refuses all requests.| FRANCOIS Dufour wrote: try to lower your conection time out under catalina policy

Re: Tomcat 5.5.4 Stability

2004-11-17 Thread V D
I just test this at home. I change all settings to use Tomcat 5.5.4, Axis 1.2. The result is a big surprise. Right now, I hit the server with 2 clients, each has 150 connections. There is no error so far. This machine is faster than the one at work, and also has double the amount of RAM.

Tomcat 5.5.4 Stability

2004-11-16 Thread V D
Today, I ran an axis application under both Tomcat 5.028 and 5.5.4. Hitting this axis application with 100 simultaneous clients for many hits. 5.0.28 seems to hold up very well. It drops connections once a while. However, 5.5.4 drops many connections. I wonder if the Tomcat team aware of

Good tutorial on embedded Tomcat

2004-11-13 Thread V D
I try to find good information on programming with embedded Tomcat, but did not find much. I managed to get it running. However, if there's more indepth information, it would be much easier. I didn't see much information on Tomcat website. Did I miss something? There's the API, which is

Set resource parameters in 5.5 not the same as 5.0

2004-11-11 Thread V D
Using Embedded Tomcat, in 5.0, one would add a resource as: StandardContext context = (StandardContext)embeddedTomcat.createContext(context, path); ContextResource res = new ContextResource(); res.setName( jdbc/ name); res.setType( javax.sql.DataSource ); res.setAuth( Container );

Re: Set resource parameters in 5.5 not the same as 5.0

2004-11-11 Thread V D
Probably answer myself here, but is it true that to have more than one resource parameter, just create more than one ContextResource? V D wrote: Using Embedded Tomcat, in 5.0, one would add a resource as: StandardContext context = (StandardContext)embeddedTomcat.createContext(context, path

Re: connection pooling

2004-11-06 Thread V D
How about try to move your application (wms) out of the webapps directory, let's say: c:\wms Then in the server.xml, try to change docBase in the context: docBase=c:\wms Now, see if your application works or give a different error. Remember to drop the jdbc library into the common/lib folder.

What's up with all these Hi virus

2004-10-14 Thread V D
Should the server has email filter that throws out these. Or maybe it comes from different server? - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

[OT] Re: Have you implemented a Java server faces site?

2004-08-15 Thread V D
successfully, if you don't mind, could you share your experience and how did your project go? Thanks. Hiroshi Iwatani wrote: Oh yes. But ... V D wrote: Thank you very much for the link. I also did some work on JSF too, and see its strength and weakness. Unfortunately, the guy doing

Have you implemented a Java server faces site?

2004-08-14 Thread V D
If so, what is your experience? Is it mature enough for a serious web programming? Thanks. - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Have you implemented a Java server faces site?

2004-08-14 Thread V D
. Unbelievable! Hiroshi Iwatani wrote: Yes. See http://www.theserverside.com/news/thread.tss?thread_id=27962 V D wrote: If so, what is your experience? Is it mature enough for a serious web programming? Thanks. - To unsubscribe, e-mail

Re: SunONE versus Tomcat performance

2004-07-31 Thread V D
I used it for webservice before, and it is faster than Tomcat, but I wouldn't say that was 2 to 5 times for that particular case. You can get it for free because it's bundled with the Application Server platform which is free. Julian wrote: Just downloaded it to give it a try. There's a trial

Re: Connection pool detecting bad connection

2004-07-17 Thread V D
Thank you very much for the information. I wonder what is the implication of this in term of performance. This effectively double the number of query if my query is small and one for each request to have a connection handle (but under very heavy load). Also, what's a generic way for doing