Logo 
Search:

Java Forum

Ask Question   UnAnswered
Home » Forum » Java       RSS Feeds

Telnet Application

  Asked By: Molly    Date: Jan 12    Category: Java    Views: 685
  

We r doing a project on network monitoring using java.
i request all java programmer to help out from the
problem we r facing.

we r trying to deveelop a java telnet application.

pls help us to either
1)find how to proceed to do this application
or
2)give us the java source code...

Share: 

 

3 Answers Found

 
Answer #1    Answered By: Carl Woods     Answered On: Jan 12

Do you need a real Telnet client? The Telent protocol is kind of ...
wacky ... to work with.

 
Answer #2    Answered By: Adal Fischer     Answered On: Jan 12

You are only needed to open a server socket and read command (through characters
is inputed to InputStream).

It is very simple. You dont need source  code, you need to think & explore!
We r doing a project  on network  monitoring using java.
request  all java  programmer to help  out from the
problem we r facing.

we r trying to deveelop a java telnet  application.

pls help us to either
1)find how to proceed to do this application
or
2)give us the java source code...

 
Answer #3    Answered By: Devlan Jones     Answered On: Jan 12

> We r doing a project  on network  monitoring using java.

What school / course are you doing this for, curious.

Open socket, get input and output stream.
wrap streams into reader and writer.

write command to writer. read response from reader.

That's essentially it.

They hairy wacky mess comes into play when you want to interpret
screen controls. vt100 vt202 xterm, whatever, etc.

There are a few libraries ported from available C code.

MindTerm a bunch of VT terminal interpreters built in, but you can
find many other ones through freshmeat.net

 
Didn't find what you were looking for? Find more on Telnet Application Or get search suggestion and latest updates.




Tagged: