Create web based custom telnet client to communicate with remote destinations

T

thilandeneth

i need to do telnet via a web server please give me a idia to initiate
the project following requirements are needed

1 Create web based custom telnet client to communicate with remote
destinations.
must provide login security before make communication
2 telnet communication should not be a direct 1 to 1 communication and
that must be as follows
Web telnet client -à Web server (telnet client) -à destination (see
figure 01)

3 Actual telnet client (dos prompt or other telnet client) must be
residing on the web server.
The responses should show on the web client.
4 Continues communication will be implemented until web client stops.
Standard GUI with good look and feel will be better for web client.
Secure communication will be required.
 
G

Greg Young

For the most simple commands you might be able to get this work but I can
ssure you that you will not get this to work with say a curses interface
over telnet (without leaving regular browser operations) think about an
interface like vi whic selectively updates the screen .. even going through
webservices in ajax would force your broswer interface to crawl..

If you are just doing send command-> receive data, that should be pretty
straight forward (i.e. ls<enter>then receive data for ls). Unfortunately you
do not generally do this in a telnet connection (generally you have local
echo turned off and the server handles char by char your data input (for
instance in many unix prompts when you hit <tab> it will try populating
filenames as you type (etc) , which would be next to impossible (unless you
wanted to do something like host a winform control in the browser which then
telneted to a relay server on your webserver)) but even a design like this
is full of holes.

Perhaps a bit more information on what you are trying to accomplish? Is it
only a very small cross section of the telnet spec?

Cheers,

Greg Young
MVP - C#



i need to do telnet via a web server please give me a idia to initiate
the project following requirements are needed

1 Create web based custom telnet client to communicate with remote
destinations.
must provide login security before make communication
2 telnet communication should not be a direct 1 to 1 communication and
that must be as follows
Web telnet client -à Web server (telnet client) -à destination (see
figure 01)

3 Actual telnet client (dos prompt or other telnet client) must be
residing on the web server.
The responses should show on the web client.
4 Continues communication will be implemented until web client stops.
Standard GUI with good look and feel will be better for web client.
Secure communication will be required.
 
T

thilandeneth

Dear sir
thanks for idia that you have given can you help me to design the case
diagrams for building c# telnet librarry i'm looking forword to hearing
from you

regards thilan
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top