how do i return the value for a response in webservices, if i post a request through php's curl i get a value of 1 as response say
curl_setopt($curl, CURLOPT_POSTFIELDS, post_body);
curl_setopt($curl, CURLOPT_TIMEOUT, 30); $xmlResponse = curl_exec($curl)
echo $xmlResponse.
i want to get the value for one particular value, my obs resopnse is like the one below. does anyone know how to get it.
<?xml version="1.0" encoding="utf-8"?>
<OBSResponse xmlns=" <ReferenceNumber><font class=value>int</font></ReferenceNumber>
<ResponseCode><font class=value>int</font></ResponseCode>
<ResponseString><font class=value>string</font></ResponseString>
<Success><font class=value>boolean</font></Success>
</OBSResponse></pre>
curl_setopt($curl, CURLOPT_POSTFIELDS, post_body);
curl_setopt($curl, CURLOPT_TIMEOUT, 30); $xmlResponse = curl_exec($curl)
echo $xmlResponse.
i want to get the value for one particular value, my obs resopnse is like the one below. does anyone know how to get it.
<?xml version="1.0" encoding="utf-8"?>
<OBSResponse xmlns=" <ReferenceNumber><font class=value>int</font></ReferenceNumber>
<ResponseCode><font class=value>int</font></ResponseCode>
<ResponseString><font class=value>string</font></ResponseString>
<Success><font class=value>boolean</font></Success>
</OBSResponse></pre>