Displaying 1 result from an estimated 1 matches for "dosomethingresponse".
2006 Jul 22
0
multiple return values in action web service
...it translates
into another layer in the XML, and the existing clients won''t know how to
parse it. Here''s an example of the return code (minus namespaces) if I use
a struct.
<?xml version="1.0" encoding="UTF-8" ?>
<Envelope>
<Body>
<doSomethingResponse>
<return type="ReturnStatus">
<returnText type="string">Success</returnText>
<returnCode type="int">0</returnCode>
</return>
</doSomethingResponse>
</Body>
</Envelope>
But that...