Tom said:
Thanks for the quick reply!
I see how I can run HT on a PC and send text to the dumb terminal and
receive text from the terminal but I don't see how I can actually run
a Windows text program with all I/O going to the terminal. Remember, this
is a dumb terminal that only has RS-232. It has no capability to use telnet,
ssh or other protocols. Am I missing something?
Tom Lake
(I tried to fix the quoting on your WLM posting, but it's hard to fix manually.)
On a Linux or XWindows setup, you'd use XSendEvent to send synthetic events to
programs on the desktop. I've written simple programs before, to use that
facility, to send stuff between disparate environments.
This posting, claims the equivalent to XSendEvent, is Windows SendMessage.
http://linux.derkeiler.com/Newsgroups/comp.os.linux.development.apps/2009-02/msg00027.html
And this doesn't seem to be exactly the same thing.
http://msdn.microsoft.com/en-us/library/ms644950(VS.85).aspx
There's sort of an example here. You'd replace the source of the
input, with characters received from the COM port.
http://msdn.microsoft.com/en-us/library/ms646268(v=VS.85).aspx#displaying_input
The only benefit I see to doing this, is security - the ability to restrict what
the dumb terminal can do to the computer. Otherwise, perhaps you can use
a remote desktop setup, to chain two devices together and use Ethernet cabling
or Wifi for the interconnect. (TeamViewer?)
http://en.wikipedia.org/wiki/Teamviewer
Eons ago, there were people running Unix boxes as terminal servers (timesharing),
so you could take a device with a large number of serial ports, a modem pool, and
allow say, 32 people to log in remotely and each operate a text only session. But
I don't know if anyone still offers such services or not.
Maybe this is the terminology I'm looking for - a BBS.
http://en.wikipedia.org/wiki/Bulletin_board_system
Paul