So i have a wsdl that defines a message part like the following
<wsdl:message name="processEnvelopeResponse">
<wsdl:part name="processEnvelopeReturn" type="xsd:base64Binary"/>
</wsdl:message>
This maps to a xsd, wich then imports other xsds and so on.
I have the following questions:
- How can i generate the Message part objects from the xsd
Ignore this one, i have found the answer, you can do this as long as you import the xsd into the wsdl file. Will explain better later on
- How can i generate the client side objects in a way that allows me to directly fill the message objects and pass it over the wire
- How do i call the webservice, transforming the generated objects in to base64Binary (this one assumes the above is not possible)