473,407 Members | 2,306 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,407 software developers and data experts.

Telnet emulation with Javascript/dhtml


Does anyone have code they could share that would implement a telnet
session in a browser using Javascript? I've seen it done once, but they
did not have code available. This would be integral to preserving some
old telnet-based software but allowing us to move on with web-only code
at this point.

Thank you in advance to anyone who can assist.

(Ideally, it should be cross-browser, of course).

Rick

Aug 10 '05 #1
6 17142
"Questman" <qu******@UBESUXthemajorbbs.com> kirjoitti
viestissä:fA*****************@fe80.usenetserver.co m...

Does anyone have code they could share that would implement a telnet
session in a browser using Javascript? I've seen it done once, but they
did not have code available. This would be integral to preserving some
old telnet-based software but allowing us to move on with web-only code at
this point.

Thank you in advance to anyone who can assist.

(Ideally, it should be cross-browser, of course).

Java Applet might be what you need. Javascript does not provide such
functionality unless... Hmm. You could possibly make an AJAX/CGI application
which would use a serverside script to telnet and javascript/xmlRequest to
display the output to the client. Still, I'd start making a Java Applet for
that if I were you.

--
SETI @ Home - Donate your cpu's idle time to science.
Further reading at <http://setiweb.ssl.berkeley.edu/>
Kimmo Laine <et****************@5P4Mgmail.com>
Aug 10 '05 #2
Kimmo Laine wrote:
"Questman" <qu******@UBESUXthemajorbbs.com> kirjoitti
viestissä:fA*****************@fe80.usenetserver.co m...
Does anyone have code they could share that would implement a telnet
session in a browser using Javascript? I've seen it done once, but they
did not have code available. This would be integral to preserving some
old telnet-based software but allowing us to move on with web-only code at
this point.

Thank you in advance to anyone who can assist.

(Ideally, it should be cross-browser, of course).


Java Applet might be what you need. Javascript does not provide such
functionality unless... Hmm. You could possibly make an AJAX/CGI application
which would use a serverside script to telnet and javascript/xmlRequest to
display the output to the client. Still, I'd start making a Java Applet for
that if I were you.


For that matter, if it isn't something that needs intervention, set up a
server-side script (php, asp, etc.) to accept the data that will be sent
via post or something, and have the script execute all the necessary
actions.

--
Justin Koivisto, ZCE - ju****@koivi.com
http://koivi.com
Aug 10 '05 #3
Kimmo Laine wrote:

Java Applet might be what you need. Javascript does not provide such
functionality unless... Hmm. You could possibly make an AJAX/CGI application
which would use a serverside script to telnet and javascript/xmlRequest to
display the output to the client. Still, I'd start making a Java Applet for
that if I were you.


Hi Kimmo,

The problem with an Applet is that many browsers turn off the
functionality for "security" or performance reasons.

Ideally, the goal to get javascript functionality is to have a stock
browser be able to access this content.

Unfortunately, it also needs interaction...

Here's an example of what I'm talking about doing :

http://www.port42.com/

I've tried contacting these blokes but they do not respond..
So I now wish to develop my own version, but don't really know where to
start.

Rick

Aug 11 '05 #4
"Questman" <qu******@UBESUXthemajorbbs.com> kirjoitti
viestissä:a8**************@fe07.usenetserver.com.. .
Kimmo Laine wrote:

Java Applet might be what you need. Javascript does not provide such
functionality unless... Hmm. You could possibly make an AJAX/CGI
application which would use a serverside script to telnet and
javascript/xmlRequest to display the output to the client. Still, I'd
start making a Java Applet for that if I were you.


Hi Kimmo,

The problem with an Applet is that many browsers turn off the
functionality for "security" or performance reasons.

Ideally, the goal to get javascript functionality is to have a stock
browser be able to access this content.


Dude, people turn of Javascript as well. That's like saying you don't like
Britney Spears but do like Christina Aguilera because Britney is a stupid
cow. They're both stupid cows! If you want to really have any given browser
to be able to handle it, using javascript is not going to help you at all.
With both of them you are between a rock and a hard place.

The ultimate solution would be to do it like a chat, where you have two
frames: large top and one row bottom. You type the commands in the bottom
frame and submit it, and the output appears in the top frame if it's done
like a chat page. Then the bottom frame just reloads.

How to do the chat page? You gotta use sme server side programming. The key
is open the page, but never close it. Keep on streaming the output, send
some spaces every now and then to keep the connection alive and poll for new
output. When new output appears like maybe in a text file, stream the
textfile and delete it. Then start polling again if new text has a ppeared.
That's like the stupidest thing I've ever written, but it's the solution
that should work in just about any given browser.

Here's a pseudo code

This for the telnet output :

start_telenet_session {
do while(true) {
output_available = poll textfile
if(output_available) {
print output
clear textfile
} else {
sleep 1 second
print " "
}
}
}
This is for the bottom frame :

command_recieved {
execute command
write command output to textfile
reload same page
}

--
SETI @ Home - Donate your cpu's idle time to science.
Further reading at <http://setiweb.ssl.berkeley.edu/>
Kimmo Laine <et****************@5P4Mgmail.com>
Aug 11 '05 #5
Yeah there is a open source project that is based off of the work at
http://sarissa.sourceforge.net/ it is called AnyTerm I believe they
even support SSH. http://anyterm.org/

good luck

Aug 11 '05 #6
Nathan White wrote:
Yeah there is a open source project that is based off of the work at
http://sarissa.sourceforge.net/ it is called AnyTerm I believe they
even support SSH. http://anyterm.org/

good luck


THIS IS EXACTLY WHAT I NEEDED.

Thank you, Nathan.

Thanks to those who responded - it is much appreciated.

Rick

Aug 11 '05 #7

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

3
by: Chris Ryan | last post by:
Is there a way to change the displayed text on a web page using some combination of Javascript and DHTML? NOT in a text box. As far as I know (with my limited knowledge) the only way you can do...
2
by: mr_burns | last post by:
hi there, i would like a book that will explain concepts of javascript and dhtml instead of, for example, ten tutorials on how to do specific things in js or dhtml. ideally a book thats can...
1
by: satyanand | last post by:
hi, Can anybody give me the book and author name which have the combined code and description of "Javascript / DHTML / Ajax" . I need it very much. Thanks..... Satyanand Verma Software...
1
by: doublestack | last post by:
I have a html file with javascript and am loading information into it with a xml file stored within sharepoint. I am having problems getting the dates to appear correctly, specifically, start date...
3
by: neovantage | last post by:
Hey All, I want to create 3d Scrollbar using javascript/dhtml in my static pages. My 3d scrollbar feel n look you can see from the attached image. I hope to have a solution from this great...
3
by: WPPJames | last post by:
I have a desktop software product (Rmsad.exe) that runs as a process in the background. Periodically, Rmsad.exe makes a call to a .php page (smfeed.php) on my server. One of the parameters it sends...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.