Why does wscompile create JAXB-like bindings for some parts in a WSDL message but not others? For example:
<wsdl:message name="order">
<wsdl:part name="body" element="oms:SalesOrder"/>
<wsdl:part name="messagetypeHeader" element="xyz:typeofmessage"/>
</wsdl:message>
When I generate a server interface (Service Endpoint Interface) from WSDL with the above message definition, the result is a java binding to a generated class mapping to the schema xyz:typeofmessage. However, the oms:SalesOrder schema gets bound to a generic SOAPElement class.
Any ideas?
Thanks,
Mark