I'm very sorry if I made a wrong title, I'm not familiar with SOAP response and types of it. But I guess it's a WSDL response, at least I got it from WSDL link...
I have a following url http://somedomain.com/j.svc?wsdl
And after I made a request using curl_multi I got the following response. The response was shortened to two results so it would be easier to read
The response is as following:
<s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/">
<s:Body>
<GetJourneyListResponse xmlns="http://tempuri.org/">
<GetJourneyListResult xmlns:a="http://schemas.datacontract.org/2004/07/DreamFlightWCF" xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
<a:Journey>
<a:FromAirport>LHR</a:FromAirport>
<a:TotalPrice>146</a:TotalPrice>
</a:Journey>
<a:Journey>
<a:FromAirport>LHR</a:FromAirport>
<a:TotalPrice>155</a:TotalPrice>
</a:Journey>
</GetJourneyListResult>
</GetJourneyListResponse>
</s:Body>
</s:Envelope>
Is there any chance to parse the result using PHP? I made lots of searches including StackOverflow and here what I managed to find.
To parse the above response I can use following code:
$xml = simplexml_load_string($result);
$xml->registerXPathNamespace('flight','http://schemas.datacontract.org/2004/07/DreamFlightWCF');
foreach ($xml->xpath('//flight:Journey') as $item){
print_r($item);
}
It seems that the above PHP code piece is correct by partially. I get the correct amount of "Journey"s but the $item by its own is empty.
Any solutions? Please don't advise to use SoapClient to retrieve the result. I can't move from curl_multi. I already have the result and I need to parse it. Thank you in advance