PHP SOAP 发送XML
<?php$xmldata=<<<EOT<soapenv:Envelopexmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"xmlns:xsd="http://www.w3.org/2001/XMLSchema"xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><soapenv:Body><MOLECULESFORMAT="smi"><MOLECULE>C1CCCCC1</MOLECULE></MOLECULES></soapenv:Body></soapenv:Envelope>EOT;$wsdl='http://www.vcclab.org/web/services/ALOGPS?wsdl';try{$client=newSoapClient($wsdl);$result=$client->__doRequest($xmldata,$wsdl,'getAlogpsResults',1,0);//发送xml必须使用__doRequestprint_r($result);}catch(SoapFault$e){echo$e->getMessage();}catch(Exception$e){echo$e->getMessage();}
声明:本站所有文章资源内容,如无特殊说明或标注,均为采集网络资源。如若本站内容侵犯了原著者的合法权益,可联系本站删除。