SOLVED!! SEE BELOW
I'm working with an API for a vendor's software. I am making a SOAP call using curl, and the XML I'm returning to a variable looks weird.
This is the output of print_r($response) which is the response from the server after the successful API call.
Note the encoded HTML instead of the ASCII characters for the opening and closing tags starting with <SearchLocations>.
Also note that when I put the XML below into a variable (using the < and > instead of the < and >), my scripts run fine and I'm able to parse and step through the XML and display it via PHP - but for some reason with this XML I am getting "Warning: Unknown: Node no longer exists in" error message because it can't find the child nodes correctly. It's getting hung up on the SearchLocations, which tells me the missing < and > are causing probs.
My API call and headers:
$host = "server.myvendor.com";
$path = "/thefilefrommyhost.asmx";
function send_request_via_curl($host,$path,$content)
{
$posturl = "https://" . $host . $path;
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $posturl);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_HTTPHEADER, Array("Content-Type: text/xml;charset=utf-8"));
curl_setopt($ch, CURLOPT_HEADER, false);
curl_setopt($ch, CURLOPT_POSTFIELDS, $content);
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, 0);
// curl_setopt($ch, CURLOPT_HTTPHEADER, $headers); // Not sending
$response = curl_exec($ch);
return $response;
}
$content = '<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
<soap:Body>
<GetLivePostLocations xmlns="http://tempuri.org/">
<Login>SomeID</Login>
<UserName>MyUsername</UserName>
<Password>Superman</Password>
</GetLivePostLocations>
</soap:Body>
</soap:Envelope>';
$response = send_request_via_curl($host,$path,$content);
if ($response)
{
// parse and display
}
Returned XML:
<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<soap:Body>
<GetLivePostLocationsResponse xmlns="http://tempuri.org/">
<GetLivePostLocationsResult><SearchLocations>
<Table>
<LocationId>1035001</LocationId>
<LocationName>Albuquerque, New Mexico, USA</LocationName>
</Table>
<Table>
<LocationId>1016003</LocationId>
<LocationName>Atlanta, Georgia, USA</LocationName>
</Table>
</SearchLocations>
</GetLivePostLocationsResult>
</GetLivePostLocationsResponse>
</soap:Body>
</soap:Envelope>
So it appears the mix of HTML and ASCII is causing me problems, and can't figure out why it's coming back like that, or even how to work around.
SOLVED!
Well, a workaroudn - I was able to use html_entity_decode($response);
before parsing was able to fix the bad XML and it now works!