Using tomcat to hold many open connections.

2008-10-06 Thread uprooter
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 allow HTTP (this is why

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: > Sent: Monday, October 06, 2008 4:29 PM > Subject: Using tomcat to hold many open connections.

Am I the only idiot trying metro/wsit on tomcat 6 ?

2008-03-25 Thread uprooter
Hi. I need to create a secure web service and allow .net clients to consume it. sun/netbeans are only focusing on glassfish. but I couldn't find any official documentation on how to set up this thing on tomcat. I've seend some blog posts from sun developers but nothing that could really make thing

tomcat's log files naming and rotation.

2008-05-04 Thread uprooter
Hi. I'm using tomcat-6.0.16 on a linux server. I don't want tomcat to insert the date in the log file names, this is very uncomfortable for me. And I don't want tomcat to do the log rotation. I'll do it myself with logrotate I'm using the default logging facility. How can I achieve that? Many Tha

Acting on threads by socket events.

2008-12-17 Thread uprooter
Hello. I'm trying to overcome 2 of tomcat limitations that prevent me from rolling my project on it. The limitations are: 1. Tomcat can't detect a lost of connection while the server is processing. 2. If I want my servlet to halt the processing but and keep the connection open tomcat will just ha

Re: Acting on threads by socket events.

2008-12-18 Thread uprooter
Bill Barker-2 wrote: > > Can't be done unless the servlet periodically writes (and flushes) to the > OutputStream. > Many thanks bill. I don't want to periodically write as im planning to hold many connections waiting for the server. Does SOAP/TCP or NIOconnector can help me with that ? -- V