Closed. This question is off-topic. It is not currently accepting answers. Want to improve this question? Update the question so it's on-topic for Stack Overflow.
I created a ServerSocket that listens to port 9000 in my app, and I want to telnet to that port. It works on my rooted test device, but I need it to work on non-root开发者_StackOverflow社区ed devices,
I am trying to make a way to telnet to an unrooted Droid. I have the INTERNET permission active, I have my device connected on the same network as my Mac OS X box via WiFi, and I am able to ping the p
I\'m in an Ubuntu terminal, and telnet to a server. Now whenever I type \'up\', it turns i开发者_StackOverflownto ^[[A. Other arrow keys also turn into control characters. Is there a way I can run tel
I created a really simple Java program that creates a java.net.ServerSocket on an open port, x, and waits for a connection using accept (). I want to use telnet/ssh to connect to the program via port
I\'m trying to post some data from a Java client using sockets. It talks to localhost running php code, that simply spits out the post params sent to it.
I need to connect to my twisted application at runtime and I am trying to get twisted.manhole to work for me to that end. I am on Mac OSX 10.6 with twisted 8.2 as installed by default.
I\'m using the net/telnet library in ruby to read data from a server. It\'s sending commands as whole lines with a newline at the end, so I thought I\'d do this:
I\'m looking for a guide on how to use fsockopen() to communicate with a telnet system.... I\'m connected just fine, but the command is failing to send.I\'ve seen some documentation fwrite() that show
I\'m attempting to put together a telnet client for wp7 mango, so I can play some muds on my dev phone. I am having difficulty finding a decent open source terminal emulation library that will wor开发