Comment #7 on issue 1697 by jussi.ao...@gmail.com: Telnet.Write skips
output results
http://code.google.com/p/robotframework/issues/detail?id=1697
I think your server implementation is not following the Telnet standards.
One possible reason could be this:
When you read the data with String str = in.readLine(); you will lose the
type of newline I think. Then you echo it back with out.println("Echo: " +
data); using the system newline.
I think this would work better:
out.print("Echo: " + data+ "\r\n");
--
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.