I have a wsdl file that uses doc/literal with a schema and use wsdl2java to create my service.
In looking at the code, I have identified a few ways I could do it, but would love more feedback:
1. Use the generated classes from wsdl2java, and use the BeanDeserializer to create my Java object. This seems like it may not be performance friendly?
2. Turn my SAX into DOM, and then use that to build up a SOAPEnvelope from scratch. (If there was a way to do this with SAX, it might be the fastest)
Any help would be appreciated.
Irv