How tomulti thread a servlet

2001-05-14 Thread Bob Smith
Hi, I have migrated a TCP based server to a servlet and cannot figure out how to get multi-threading working. The TCP server works like this; Listen for Request: read command code from the accepted socket; find a free thread containing a slave server who can handle the command; hand the socket

RE: How tomulti thread a servlet

2001-05-14 Thread Bob Smith
- From: Danny Angus [mailto:[EMAIL PROTECTED]] Sent: Monday, May 14, 2001 12:56 PM To: [EMAIL PROTECTED] Subject: RE: How tomulti thread a servlet I'm nervous about airing my own ignorance here, but what I have seen is that Tomcat hands out requests to multiple threads each of which contains

Re: How tomulti thread a servlet

2001-05-14 Thread Bo Xu
Bob Smith wrote: Hi, I have migrated a TCP based server to a servlet and cannot figure out how to get multi-threading working. The TCP server works like this; Listen for Request: read command code from the accepted socket; find a free thread containing a slave server who can handle the