PHP中的SOAP Web服务API

时间:2018-10-09 14:13:18

标签: php web-services web soap

我正在尝试使用PHP中的Web服务来查询SOAP API:

Web服务仅列出可用的数据集以及这些数据集包含的字段。该Web服务不带任何参数,但需要身份验证。

<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"; xmlns:v0="http://www.weatherservice.com/service/infrastructure/search/v0-1">;
   <soapenv:Header>
      <v0:HeaderLogin>
         <username>johnsmith</username>
         <password>secretpassword</password>
      </v0:HeaderLogin>
   </soapenv:Header>
   <soapenv:Body>
     <v0:listdatasets/>
   </soapenv:Body>
</soapenv:Envelope>

我不知道从哪里开始,我们将不胜感激。

0 个答案:

没有答案