Web services SOAP非wsdl模式选项中的uri是什么

Web services SOAP非wsdl模式选项中的uri是什么,web-services,soap,Web Services,Soap,非wsdl模式下的php SOAPClient和SOAPServer需要一组选项。 选项中用于指向web服务服务器文件所在位置的位置 但是选项中的uri是什么呢??因为我改变了它的每一件事,网络服务器工作正常 $options = array( 'uri' => 'http://aahshhs.com', //wath do this line????? 'location' => 'http://localhost/exer/Server.php',); 一系列选项。如果在W

非wsdl模式下的php SOAPClient和SOAPServer需要一组选项。 选项中用于指向web服务服务器文件所在位置的位置 但是选项中的uri是什么呢??因为我改变了它的每一件事,网络服务器工作正常

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

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

  • location是将请求发送到的SOAP服务器的URL
  • uri是SOAP服务的目标命名空间
资料来源: