SOAP webservice 通信问题
程序员文章站
2022-06-10 12:14:58
...
$client = new \SoapClient($wsdl_url,["trace"=>true,'encoding'=>'UTF-8','soap_version'=>SOAP_1_2,'uri'=>'http://ws.apache.org/axis2']);
print_r($client->__getFunctions());
$xml=
SLDQ
XML;
主要在这边:使用数组就报错
$client->__soapCall('getDepartInfo',$xml);
Fatal error: Uncaught SoapFault exception: [HTTP] Could not connect to host in
等下发wsdl
报错
Could not connect to host
SoapFault Object
(
[message:protected] => Could not connect to host
[string:Exception:private] =>
[code:protected] => 0
[file:protected] => /www/wwwroot/default/p.php
[line:protected] => 29
[trace:Exception:private] => Array
(
[0] => Array
(
[function] => __doRequest
[class] => SoapClient
[type] => ->
[args] => Array
(
[0] =>
[1] => http://****:80/axis2/services/WS4SZ.WS4SZHttpSoap11Endpoint/
[2] => urn:getDepartInfo
[3] => 1
[4] => 0
)
)
帮我调试一下,联系我QQ 我给你文件。改天请你吃饭
生成的 url 是
生成的 url 是
发你短信信息里,因为这个不能公开
print_r($client->__getFunctions());
$xml=
XML;
主要在这边:使用数组就报错
$client->__soapCall('getDepartInfo',$xml);
Fatal error: Uncaught SoapFault exception: [HTTP] Could not connect to host in
等下发wsdl
回复讨论(解决方案)
额,容量太大。。。。。
http://www.foxwho.com/wsdl.txt
这个地址查看
晚上 8点钟在线,现在回家吃饭
由
struct getDepartInfo { string strXml;}可知,要这样调用
$client->__soapCall('getDepartInfo', array('strXml' => $xml));
由
struct getDepartInfo { string strXml;}可知,要这样调用
$client->__soapCall('getDepartInfo', array('strXml' => $xml));
报错
Could not connect to host
SoapFault Object
(
[message:protected] => Could not connect to host
[string:Exception:private] =>
[code:protected] => 0
[file:protected] => /www/wwwroot/default/p.php
[line:protected] => 29
[trace:Exception:private] => Array
(
[0] => Array
(
[function] => __doRequest
[class] => SoapClient
[type] => ->
[args] => Array
(
[0] =>
[1] => http://****:80/axis2/services/WS4SZ.WS4SZHttpSoap11Endpoint/
[2] => urn:getDepartInfo
[3] => 1
[4] => 0
)
)
由
struct getDepartInfo { string strXml;}可知,要这样调用
$client->__soapCall('getDepartInfo', array('strXml' => $xml));
帮我调试一下,联系我QQ 我给你文件。改天请你吃饭
Could not connect to host 无法连接到主机
你在 wsdl 中隐去了目标 url ,这就没法帮你了
vs2010 的 wsdl 工具生成的方法是
public string getDepartInfo([System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified, IsNullable=true)] string strXml) { object[] results = this.Invoke("getDepartInfo", new object[] { strXml}); return ((string)(results[0])); }可知并没有搞错
生成的 url 是
this.Url = "http://***:80/axis2/services/WS4SZ.WS4SZHttpSoap11Endpoint/";
Could not connect to host 无法连接到主机
你在 wsdl 中隐去了目标 url ,这就没法帮你了
vs2010 的 wsdl 工具生成的方法是
public string getDepartInfo([System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified, IsNullable=true)] string strXml) { object[] results = this.Invoke("getDepartInfo", new object[] { strXml}); return ((string)(results[0])); }可知并没有搞错
生成的 url 是
this.Url = "http://***:80/axis2/services/WS4SZ.WS4SZHttpSoap11Endpoint/";
发你短信信息里,因为这个不能公开
谢谢版主,等对方把端口更换成公网IP,我再试试看!
哪天来苏州的时候搓一顿。
上一篇: AJAX实现用户名验证
下一篇: PHP的一个IF语句总也写不好。
推荐阅读
-
php调用webservice接口,乱码及报错的问题
-
PHP使用SOAP做webservice
-
第一次用php写webservice遇到一个很奇怪的有关问题,详细请看内容,有代码
-
xife webservice 解决调用的方法里面的参数有数组的问题 博客分类: 工作
-
xife webservice 解决调用的方法里面的参数有数组的问题 博客分类: 工作
-
socket通信 php作为客户端,C++作为服务端通信问题。
-
第一次用php写webservice遇到一个很奇怪的有关问题,详细请看内容,有代码
-
webservice - php通过soap调用远程函数接口问题
-
求问调用顺丰webservice的问题
-
关于SOAP的小问题