我将这个 Web 服务调用到我的 curl 文件中,并且响应是 XML 格式的。现在,当我在浏览器上预览时,它不显示 Google 地图,而是显示 html 标签。
$data= "<soapenv:Envelope xmlns:soapenv='http://schemas.xmlsoap.org/soap/envelope/' xmlns:ser='http://services.webservices.vub.com/'>
<soapenv:Header/>
<soapenv:Body>
<ser:googlemap>
<!--Optional:-->
<address>ijzerenmolenstraat, leuven Belgium</address>
</ser:googlemap>
</soapenv:Body>
</soapenv:Envelope>";
$url="http://localhost:8080/Venue_Finder_Soap_Version_/VenueFinder?WSDL";
$response=curl_soappost_call($url,$data);
echo "<pre>";
print_r($response);
echo " </pre>";
输出:所有的html标签