Displaying 1 result from an estimated 1 matches for "returntext".
Did you mean:
return_ext
2006 Jul 22
0
multiple return values in action web service
...now 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 <return> object is getting in the way. What I''d like is:
<...