web-services – SOAP非wsdl模式选项中的uri是什么

在非wsdl模式下,php SOAPClient和SOAPServer需要一组选项.

用于指向Web服务服务器文件的位置的选项中的位置

但选择中的uri是什么?因为我把它改成了所有东西,而且web服务器工作正常

$options = array(
'uri' => 'http://aahshhs.com',   //wath do this line?????
'location' => 'http://localhost/exer/Server.php',);

最佳答案 一系列选项.如果在WSDL模式下工作,则此参数是可选的.如果在非WSDL模式下工作,则必须设置location和uri选项,其中:

> location是发送请求的SOAP服务器的URL
> uri是SOAP服务的目标名称空间.

资料来源:http://php.net/manual/en/soapclient.soapclient.php

点赞