我正在使用nusoap for webservices将酒店api投射到我的网络应用程序中。
我创建了soapclient并调用了webservice。 要求是
POST /API/xyz.asmx HTTP/1.0 User-Agent: NuSOAP/0.6.3 Host: xyz.com Authorization: xyz Content-Type: text/xml; charset="ISO-8859-1" Content-Length: 646 SOAPAction: "xyz" <?xml version="1.0" encoding="ISO-8859-1"?><SOAP-ENV:Envelope SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/" xmlns:si="http://soapinterop.org/xsd"><SOAP-ENV:Body> <username xsi:type="xsd:string">xyz</username>xxx000000</hotel_id></ns1:getwebservice>
并且回复是
HTTP/1.1 200 OK Cache-Control: private, max-age=0 Content-Type: text/xml; charset=utf-8 Server: Microsoft-IIS/7.5 X-AspNet-Version: 2.0.50727 Date: Tue, 31 May 2011 07:18:28 GMT Connection: close Content-Length: 387 <?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><Get_hotel_infoResponse xmlns="http://tempuri.org/"><getwebservice><hotels xmlns="" /></getwebserviceResult></soap:Body></soap:Envelope> </SOAP-ENV:Body></SOAP-ENV:Envelope>
我的xml响应是空的,但是我怎么能得到xml数据作为响应。
我没有得到xmlns链接作为回应。那怎么会来的?
答案 0 :(得分:2)
不要使用NuSOAP,它已经死了。使用PHP的集成SoapClient
。