I'm required to code a SOAP client for a customer, but I only have the WSDL and no access to their SOAP Server.
I have successfully generated the SOAP client, but I would like to test it locally against a close approximation of their SOAP Server. So I want to generate a working SOAP Server framework from the supplied WSDL and modify it to supply some test data.
I've tried using Spring and Maven to generate the server code, but it doesn't seem to allow WSDLs - only XSD files. And all attempts to call any SOAP service from my client fails with 404s.
Has anyone successfully generated a SOAP Server using WSDLs? What are the gotcha's?