Greetings, I have a complicated scenario to handle. I have a wsdl file which uses a particular XML schema. The XML schema is actually a handcrafted implementation of a specification. There is also a Java based implementation of the same specification. So the XSD used in WSDL and Java classes at hand are quite similar, but not exactly same. Almost all web service stacks allow creating classes from WSDL or creating WSDL from Java class annotations. What I want to do, is to use the WSDL and bind XSD used in the wsdl to existing java classes. Should/can I do this by manually replacing generated Java classes with existing ones? Is it a matter of changing type names in config files and moving binding annotations to existing classes? If you know any best practices, or java web service stacks that support this kind if flexibility in a practical way, your response would be much appreciated.
Best Regards Seref