Comment #9 on issue 1697 by jussi.ao...@gmail.com: Telnet.Write skips
output results
http://code.google.com/p/robotframework/issues/detail?id=1697
Oh, right.
What the Telnet library does at the beginning of the session, it sends in
option negotiation a request to server that it should always echo back the
command that was sent to it.
So it seems that you server is not echoing back the command sent to it?
Maybe you can then add something like this:
String str = in.readLine();
out.println(str+"\r\n");
It is a requirement in telnet library that the server has to comply with
the echo negotiation. If your server wont echo backthe commands, then you
just have to use the write bare.
--
You received this message because this project is configured to send all
issue notifications to this address.
You may adjust your notification preferences at:
https://code.google.com/hosting/settings
--
---
You received this message because you are subscribed to the Google Groups "robotframework-commit" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to robotframework-commit+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.