SOAP Response in PL/SQL ..
ynandiMay 7 2008 — edited Feb 6 2009Hello:
I have captured the SOAP response in a PL/SQL procedure in a varchar field. The value is:
<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:soap="http://www.w3.org/2003/05/soap-envelope" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<soap:Body>
<IsAuthenticatedResponse xmlns="http://lacounty.gov/IADWebServices">
<IsAuthenticatedResult>false</IsAuthenticatedResult>
</IsAuthenticatedResponse>
</soap:Body>
</soap:Envelope>
I am trying to get the value of IsAuthenticatedResult (ie. false) in a varchar2 ?
Please note that the WSDL has defined the data type IsAuthenticated result as a boolean ?
How do I extract this value ? Please help
Thanks - Yesh