How to read SOAP response in FLEX 3

Posted by Sam Rudolph on Stack Overflow See other posts from Stack Overflow or by Sam Rudolph
Published on 2010-05-29T05:16:31Z Indexed on 2010/05/29 5:22 UTC
Read the original article Hit count: 277

Filed under:
|
|
|


SOAP Request
<?xml version="1.0" encoding="UTF-8"?>

<S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/">
<S:Header/>
<S:Body>
<ns2:deleteDataView xmlns:ns2="http://ws.$$$$$.@@@@@.####.com/">
<identifier>5</identifier> </ns2:deleteDataView>

&lt;/S:Body&gt;

</S:Envelope>


SOAP Response
<?xml version="1.0" encoding="UTF-8"?> <S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"> <S:Body>
<ns2:deleteDataViewResponse xmlns:ns2="http://ws.$$$$$.@@@@@.####.com/">
<return>ERROR: A bug has been encountered,please try later</return&gt

</ns2:deleteDataViewResponse> </S:Body> </S:Envelope>

I want to read SOAP response in flex,am some what new to FLEX,pls help,even good resources will work.

© Stack Overflow or respective owner

Related posts about flex

Related posts about web-services