[jboss-user] [Remoting] - Sending plain text to server without org.jboss.remoting.Clie

2006-09-21 Thread fmozturk
I like to send plain text to remoting server through socket without using org.jboss.remoting.Client object like the code below: java.net.Socket socket = new java.net.Socket(localhost, 5400); java.io.PrintWriter out = new java.io.PrintWriter(socket

[jboss-user] [Remoting] - Re: Sending plain text to server without org.jboss.remoting.

2006-09-21 Thread fmozturk
Thank you very much for your reply. Actually I have to write a service that response concurent socket connections from different type of clients (other development platforms that I can't control) which will send plain text. Is there any way to do it in JBoss or will I have to write a service