Reputation: 9299
I'm working on a soap client. I have a .wsdl
file, which defines the operations and types.
The server is not available.
How is it possible to create a test server based on that .wsdl
file, which responds to the requests and sends back random but valid data? Does a tool with this functionality exists?
Upvotes: 0
Views: 1196
Reputation: 766
You can use SOAPUI to create a stub / mock service using the wsdl and use that for testing. https://www.soapui.org/soap-mocking/working-with-mockservices.html
Upvotes: 2