views:

141

answers:

2

When creating apps that interface on various TCP protocols (apart from HTTP), we need to test our app and how it communicates with a real server.

Now typically with shared hosting you can't install any low level service to talk protocols like POP3, IMAP for email, SIP or XMPP and for instant messaging.

So are there "test" servers that exist (like example.com) that help you debug or test if you app is speaking that protocol correctly?

Or maybe its easy enough to install some email/IM protocol server on another local PC and then we can use Wireshark to test with that?

+4  A: 

I think wireshark is probably your best bet. I have never heard of publicly available test servers, I would install a server on you LAN and use that for testing.

teflon19
Are there any email/IM protocol "servers" that can be installed on Windows XP machines?
Jenko
There should be plenty of free or open-source server software for Windows XP unless you're working with very proprietary protocols in niche areas.
Dr. Watson
+1  A: 

Windows Server comes with a built in SMTP server. Try here for some information

There is a list of XMPP servers here, I have personally used OpenFire on Windows.

benPearce