I am using WCF service with TCP binding and want to do load testing, can anybody please guide, how to perform it and i want to do it on free tool. I tried with VS 2010 but it didnt work because of TCP binding
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
I’d recommend a different approach to your load testing plan. Add a wsHttpBinding endpoint to your services and use something like this free tool to do the load testing over HTTP instead of TCP. The netTcpBinding will virtually always be faster than the HTTP based bindings but not nearly as dramatically as you’d think and probably not enough to make your load test results inaccurate.
With the HTTP based load tests you’ll have more options for tools to use. Remember that you are trying to determine the performance profile of your code not the WCF framework itself. You’ll still want to do some results validation with the netTcpBinding using something along the lines of what @PeytonCrow mentions in his comment to the question.