I wrote a TCP server implementation through which I created an application that works as a TCP echo service.
Please recommend a standard method / device for testing this echo server. I understand that implementation of both TCP and ECO server is quite standard practice, so I hope to find the tools installed to test it.
PS: I can write my own test application, but I do not want to do this because if I see some problem, then I need to make sure that it is my server which is wrong I do not want to test my test client first.
I wrote this implementation using C # and .NET 3.5, although I believe there is nothing in the context of this question.