How to handle 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
6:12 UTC
Read the original article
Hit count: 284
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></S:Body>
</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>
</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