Salvador
Salvador

Reputation: 16472

tool to send data to tcp port

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

Answers (3)

Paul Farry
Paul Farry

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

Reese Moore
Reese Moore

Reputation: 11640

netcat

Upvotes: 3

Lou Franco
Lou Franco

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

Related Questions