Re: GWT and telnet connections

2010-07-06 Thread Łukasz P .
I have another question, as I said I want to send responses from the server to the client but is it secure using GWT-RPC? -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to

Re: GWT and telnet connections

2010-05-17 Thread Łukasz P .
I'm reading something about GWT-RPC now, and I wonder is it possible to make all the telnet connections on the server side and send the responses via GWT-RPC to the client side? -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to

Re: GWT and telnet connections

2010-05-17 Thread kozura
Sure, no reason why not. Client can just send user input to the server which forwards it on to the telnet session. You'd probably need to implement a form of server push to send any output of the telnet on to the client when it becomes available; look up server push and/or Comet. On May 17,

GWT and telnet connections

2010-05-12 Thread Łukasz P .
Hello, I wonder is it possible to make an application in GWT that could use telnet connections? Simply I need to send some commands via telnet to a server and show the responses in a window. I know it is possible in Java, but is it possible in GWT? -- You received this message because you are

Re: GWT and telnet connections

2010-05-12 Thread Ramon Buckland
Not from the browser no. You could do some weird stuff where the GWT client is just a front end for a server bound telnet session. On Sun, May 9, 2010 at 9:56 PM, Łukasz P. bufec...@gmail.com wrote: Hello, I wonder is it possible to make an application in GWT that could use telnet