yourbuddypal
yourbuddypal

Reputation: 543

Testing WSDL in Visual Studio

We have received a WSDL from our client that we use to communicate with their service. I have made a service reference to it in our project, and had developed the code to interact with it. I have used SoapUI to set up a mock service from their wsdl and have successfully tested my code.

My question is: is there a way to do WSDL testing only in visual studio? I am new to SoapUI and some of my concerns are as follows:

Is there a better way that I should be doing this testing? Is there a Visual Studio tool I am unaware of? Should I be trying to create my own testing service that serves the same endpoints as the client's service and implement custom code for testing? Should I learn SoapUI better and possibly address some of my issues with it?

Please let me know, my coworker assumes that microsoft has a better way to test this kind of scenario. Thanks!

Upvotes: 4

Views: 9217

Answers (1)

Shiraz Bhaiji
Shiraz Bhaiji

Reputation: 65391

We create a dummy web service based on the wsdl to test this type of scenario.

For one way of how to do this see: https://stackoverflow.com/a/1395098

Upvotes: 4

Related Questions