-
how to start telnet through applet (3 messages)
- Posted by: Ashutosh joshi
- Posted on: April 06 2007 00:06 EDT
I request the members to please guide me as to how initilise a telnet session from a applet to connect a remote host;Threaded Messages (3)
- Re: how to start telnet through applet by Biswa Das on April 10 2007 11:53 EDT
- Re: how to start telnet through applet by Nicke G on April 11 2007 04:21 EDT
- Re: how to start telnet through applet by Emil Kirschner on May 02 2007 10:47 EDT
-
Re: how to start telnet through applet[ Go to top ]
- Posted by: Biswa Das
- Posted on: April 10 2007 11:53 EDT
- in response to Ashutosh joshi
Look into APache Telnet Client, Hope it solves your problem... -
Re: how to start telnet through applet[ Go to top ]
- Posted by: Nicke G
- Posted on: April 11 2007 04:21 EDT
- in response to Ashutosh joshi
Remember though that applet sandbox restrictions forbid you to communicate with any server other than the one the applet was fetched from (unless signing the applet). /Niklas -
Re: how to start telnet through applet[ Go to top ]
- Posted by: Emil Kirschner
- Posted on: May 02 2007 10:47 EDT
- in response to Ashutosh joshi
if the host to which you want to open the telnet session is not the one from which the applet was loaded then you have to either * sign your applet (and every user must then confirm that they trust you as a provider) * tunnel your telnet traffic through a gateway located on the server which serves the applet. The first solution is more simple but required each user to perform a supplemental action and wouldn't work with firewalls The second solution is more challenging but is transparent for the user and passes through firewalls if you tunnel your telnet traffic over HTTP. Cheers, Emil Kirschner.