Tools for testing web services

I want to do some integration testing of my web services before submitting them, and I wonder if anyone can point out some tools to run these tests automatically?

I have both ASMX web services and multiple WCF.

I want to add this as a task to my build scripts and execute automatically if possible.

What are the pitfalls, if any, when it comes to testing web integration services?

0


source to share


3 answers


You can use SoapUI .



+4


source


JMeter is a Java application, but of course it can also be used for .NET web services. You can create scripts (send SOAP requests) and track the results in both text and graphical form. It can emulate high traffic conditions and is generally highly customizable.

I don't have any advice specific to testing web services other than that you definitely need to stress through heavy load conditions.



As for running tests in a script, there is an ant task to run JMeter . Since you are creating .NET services, I understand that this might mean too much work to set up a test environment. Of course, Nantes, but I don't know if it is compatible with a specific task.

0


source


Have a look at Watin - Testing Web Applications in .Net. Maybe it can help with web services.

0


source







All Articles