In wsdl:
portType/operation/output/@message is the name of a message
(message/@name). A message may have 0 or more part elements.
How does one represent in the soap java code representing the
client and server code a wsdl definition inwhich an output
has multiple return values, i.e.:
<message name="GetNameMsg">
<part name='first' type="xsd:string"/>
<part name='last' type='xsd:string'/>
</message>
<portType name='Name'>
<operation name='get'>
<output message='GetNameMsg'/>
</operation>
</portType>
Richard Emberson