Re: Using Tomcat for communicating direct TCP/IP?

2005-06-30 Thread Sergey Pariev
Hello. You might try quickserver (http://quickserver.org/) - very nice tcp-ip server lib, I've used it in my previous project for the very same purposes you described. It can do db connection pooling AFAIR and is pretty robust. The only problem I faced was sending big chunks of data 2-3 MB so

Re: Using Tomcat for communicating direct TCP/IP?

2005-06-30 Thread Bhaskar
Keke, if it is within intranet then you can try Tibco RV (uses udp so it should be faster than tcp). It is robust and proven Bhaskar Keijo Lehto wrote: Hi Bhaskar, I've understood (please correct me if I'm wrong) that both JavaSpaces and RMI are somewhat Java-specific techniques. My usage

Using Tomcat for communicating direct TCP/IP?

2005-06-29 Thread Keijo Lehto
Hi, I'm currently working on implementing a Java server, which (in nutshell) listens to certain TCP ports, reads input, processes the data and sends output back to the client depending on how the input processing went. Now, instead of reinventing the wheel, I was wondering whether I could

Re: Using Tomcat for communicating direct TCP/IP?

2005-06-29 Thread Bhaskar
Have you given any thoughts on using RMI or JavaSpaces? Bhaskar Keijo Lehto wrote: Hi, I'm currently working on implementing a Java server, which (in nutshell) listens to certain TCP ports, reads input, processes the data and sends output back to the client depending on how the input

Re: Using Tomcat for communicating direct TCP/IP?

2005-06-29 Thread Keijo Lehto
Hi Bhaskar, I've understood (please correct me if I'm wrong) that both JavaSpaces and RMI are somewhat Java-specific techniques. My usage scenario doesn't involve Java clients. In fact, the communication between the clients and the server has been limited to a predefined text-based protocol