Reputation: 16472
i am building a simple tcp server in c#, now i wanna test the performance of my app, the quesion is, exist any tool o command to send raw data to an tcp port ?
Upvotes: 0
Views: 3375
Reputation: 4768
if you are on vista or the user has WePOS or a similar variant telnet might not be installed, so grab yourself a copy of Putty, it can do Raw stuff, and it can also do Telnet and a number of other nice little tricks
Upvotes: 0
Reputation: 89152
I usually just use telnet for that. It just send raw data and shows raw data -- usually it's meant to be a terminal, but if it's ASCII, you can type and see it.
Upvotes: 1