vote up 0 vote down star

I have a simple socket server, that waits for a message and responds. How can I test this? Is there a client app or something that can help me send some data on a specific port to a server, and see the output? Telnet?

flag

What OS do you want to run it on? – Eric J. Sep 29 at 16:41
Windows XP? That's what I'm working on right now. – Jeremy Rudd Sep 29 at 16:41

4 Answers

vote up 5 vote down check

Simple telnet client works well for such tests. You can also try PuTTY in either Telnet or Raw connection modes. Both allow you to choose the port you want to connect to.

Also a tool like Microsoft Network Monitor is pretty useful to analyse the protocol's data flow if you don't have direct control (by logs) on what's being sent over the wire.

link|flag
vote up 0 vote down

hit the command line, and just use telnet.

if you have a simple echo server, go to town.

link|flag
vote up 1 vote down

Windump - tcpdump works well, and has binaries available to Windows

link|flag
vote up 5 vote down

netcat should be able to handle anything you need to do with socket testing.

http://pctechtips.org/netcat-the-swiss-army-knife-useful-commands/#more-103

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.