php中的web服务调用

php中的web服务调用,php,web-services,soapui,Php,Web Services,Soapui,我必须使用php调用Web服务。我所掌握的唯一信息是对SoapUI的示例调用,如下所示: <soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:web="http://somewhere.at/"> <soapenv:Header/> <soapenv:Body> <web:authenticate> <u

我必须使用php调用Web服务。我所掌握的唯一信息是对SoapUI的示例调用,如下所示:

<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:web="http://somewhere.at/">
  <soapenv:Header/>
  <soapenv:Body>
    <web:authenticate>
      <user-name>mmann</user-name>
      <password>787cef7a4e1ff51fcc920ad62aaa6df2df99a4bb</password>
    </web:authenticate>
  </soapenv:Body>
</soapenv:Envelope>

曼恩
787cef7a4e1ff51fcc920ad62aaa6df2df99a4bb
如何使用php进行类似的调用

非常感谢你

看看这个:

  • (php.net)
    • 您可以使用。并用于测试Web服务本身。
      希望这有助于

      (参考)cloevoting,因为有关将SOAP与PHP结合使用的教程应该可以在web上轻松找到。此外,这个问题没有显示出任何研究成果。查看如何查找wsdl文件的位置?