PHP SoapClient - 连接到 wsdl 操作超时
PHP SoapClient - connect to wsdl Operation timed out
我无法通过 PHP SoapClient 连接到我们业务合作伙伴的 wsdl,我将不胜感激任何建议。
WSDL: http://ora-im.cscargo.cz:7788/orabpel/secure/GPSlocations/GPSlocations?wsdl
端点: http://ora-im.cscargo.cz:7788/orabpel/secure/GPSlocations
当我尝试创建 SoapClient 时发出警告并显示消息
"failed to open stream: Operation timed out"
代码:
$wsdl = 'http://ora-im.cscargo.cz:7788/orabpel/secure/GPSlocations/GPSlocations?wsdl';
$client = new SoapClient( $wsdl );
谢谢大家的回复!
如果我尝试在浏览器中打开链接,它们将不起作用。
所以我认为他们有:
- 某种防止任意连接的防火墙:
- 网址不是那些。
那么你应该做的就是和系统的支持人员谈谈,向他们询问一些调试信息。至少我是这样做的。
我无法通过 PHP SoapClient 连接到我们业务合作伙伴的 wsdl,我将不胜感激任何建议。
WSDL: http://ora-im.cscargo.cz:7788/orabpel/secure/GPSlocations/GPSlocations?wsdl
端点: http://ora-im.cscargo.cz:7788/orabpel/secure/GPSlocations
当我尝试创建 SoapClient 时发出警告并显示消息
"failed to open stream: Operation timed out"
代码:
$wsdl = 'http://ora-im.cscargo.cz:7788/orabpel/secure/GPSlocations/GPSlocations?wsdl';
$client = new SoapClient( $wsdl );
谢谢大家的回复!
如果我尝试在浏览器中打开链接,它们将不起作用。 所以我认为他们有:
- 某种防止任意连接的防火墙:
- 网址不是那些。
那么你应该做的就是和系统的支持人员谈谈,向他们询问一些调试信息。至少我是这样做的。