TCP 端口 808 上的 PHP SoapClient
通常,通过端口 80 使用 SOAP 很简单:
$client = new SoapClient('http://domain.com/webservice?wsdl');
您将如何通过另一个 TCP 端口使用 Web 服务? (不是 80 或 443)
Normally using SOAP over port 80 is simple:
$client = new SoapClient('http://domain.com/webservice?wsdl');
How would you consume the web service over another tcp port? (Not 80 or 443)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试:
http://domain.com:808/webservice?wsdl
=>
$client = new SoapClient('http://domain.com:808/webservice?wsdl');
术语
:808
表示 URI 的端口号(如果省略)它会使用指定协议的默认端口号。 (80:用于 HTTP)RFC 3986:
此处对 URI 进行了很好的概述。
Try :
http://domain.com:808/webservice?wsdl
=>
$client = new SoapClient('http://domain.com:808/webservice?wsdl');
Term
:808
indicates port number of an URI, if you omit it, it will use default port number for specified protocol. (80: for HTTP)RFC 3986:
A good overview for URI is here.