Re: Using tomcat to hold many open connections.

2008-10-07 Thread André Warnier
Original post : quote Hi. I'm looking for a server that has to hold many (web services) remote clients for controlling them. I want to do things like sending power off command to a bunch of machines remotely. The clients are usually windows machines behind firewalls NAT or web proxies that only

Re: Using tomcat to hold many open connections.

2008-10-06 Thread uprooter
Thanks johnny. Will TC can survive 20k polling clients ? Johnny Kewl wrote: - Original Message - From: uprooter [EMAIL PROTECTED] To: users@tomcat.apache.org Sent: Monday, October 06, 2008 4:29 PM Subject: Using tomcat to hold many open connections. Hi. I'm looking

Re: Using tomcat to hold many open connections.

2008-10-06 Thread Johnny Kewl
- Original Message - From: uprooter [EMAIL PROTECTED] To: users@tomcat.apache.org Sent: Monday, October 06, 2008 6:48 PM Subject: Re: Using tomcat to hold many open connections. Thanks johnny. Will TC can survive 20k polling clients ? How much pipe do you have? How real time do

Re: Using tomcat to hold many open connections.

2008-10-06 Thread Kees Jan Koster
Dear Uprooter, I'm looking for a server that has to hold many (web services) remote clients for controlling them. I want to do things like sending power off command to a bunch of machines remotely. Building a botnet? :-) The clients are usually windows machines behind firewalls NAT or

Re: Using tomcat to hold many open connections.

2008-10-06 Thread Clemens Eisserer
Jetty has a special api to allow exactly this kind of request efficiently. The thread is not kept assignd to the sleeping connection, but is re-used. lg Clemens 2008/10/6 Kees Jan Koster [EMAIL PROTECTED]: Dear Uprooter, I'm looking for a server that has to hold many (web services) remote

Re: Using tomcat to hold many open connections.

2008-10-06 Thread Johnny Kewl
- Original Message - From: Kees Jan Koster [EMAIL PROTECTED] To: Tomcat Users List users@tomcat.apache.org Sent: Monday, October 06, 2008 9:22 PM Subject: Re: Using tomcat to hold many open connections. Dear Uprooter, I'm looking for a server that has to hold many (web services

Re: Using tomcat to hold many open connections.

2008-10-06 Thread ayden
: Monday, October 06, 2008 9:22 PM Subject: Re: Using tomcat to hold many open connections. Dear Uprooter, I'm looking for a server that has to hold many (web services) remote clients for controlling them. I want to do things like sending power off command to a bunch of machines remotely

Re: Using tomcat to hold many open connections.

2008-10-06 Thread Filip Hanik - Dev Lists
tomcat has one too, it's called the CometProcessor Filip Clemens Eisserer wrote: Jetty has a special api to allow exactly this kind of request efficiently. The thread is not kept assignd to the sleeping connection, but is re-used. lg Clemens 2008/10/6 Kees Jan Koster [EMAIL PROTECTED]:

RE: Using tomcat to hold many open connections.

2008-10-06 Thread Martin Gainty
not necessarily endorse content contained within this transmission. Date: Mon, 6 Oct 2008 15:22:38 -0600 From: [EMAIL PROTECTED] To: users@tomcat.apache.org Subject: Re: Using tomcat to hold many open connections. tomcat has one too, it's called the CometProcessor Filip Clemens Eisserer

RE: Using tomcat to hold many open connections.

2008-10-06 Thread Caldarale, Charles R
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Subject: Re: Using tomcat to hold many open connections. Does CometProcessor and/or NIO come pre-installed pre-configured as part of Tomcat 6? All part of the basic package: http://tomcat.apache.org/tomcat-6.0-doc/aio.html - Chuck