A Jackson
A Jackson

Reputation: 2856

Simulate a web service from wsdl file

I'm writing a program that interacts from with a SOAP web service. I have a wsdl file for the interface but I have no access to a server to test my program.

Is there some tool where I can load in the wsdl and it simulates the service? I just need to return valid looking data.

I can test the majority of my code my mocking the service interface, but I need to test the actual interface code as I've just had to change that with an updated wsdl file.

Upvotes: 3

Views: 2437

Answers (1)

WIlfinity
WIlfinity

Reputation: 1025

SoapUI can do it. It will run a local mock server.

Pretty easy to set up, just give it your WSDL, a bit of configuration, and away you go.

Upvotes: 5

Related Questions