php怎么调用webservice
程序员文章站
2022-05-14 21:59:49
...
php如何调用webservice,
//require_once('../lib/nusoap.php');
//$client = new soapclient('http://localhost:8080/IBEIntf/services/IBEService?wsdl','wsdl');
/******************************************************************************/
/* 文件名 : soapclient.php
/* 说 明 : WebService接口客户端例程
/******************************************************************************/
include('../lib/nusoap.php');
// 创建一个soapclient对象,参数是server的WSDL
$client = new soapclient('http://localhost:8080/IBEIntf/services/IBEService?wsdl', 'wsdl');
// 参数转为数组形式传递
$aryPara = array('strUsername'=>'username', 'strPassword'=>MD5('password'));
// 调用远程函数
$aryResult = $client->call('login',$aryPara);
//echo $client->debug_str;
/*
if (!$err=$client->getError()) {
print_r($aryResult);
} else {
print "ERROR: $err";
}
*/
$document=$client->document;
echo
$document
SoapDocument;
?>
这是我在网上搜的例子,但不能运行,求高手帮帮我,我的Q1175210752
------解决方案--------------------
在浏览器地址栏输入 http://localhost:8080/IBEIntf/services/IBEService?wsdl
后,得到什么?
//require_once('../lib/nusoap.php');
//$client = new soapclient('http://localhost:8080/IBEIntf/services/IBEService?wsdl','wsdl');
/******************************************************************************/
/* 文件名 : soapclient.php
/* 说 明 : WebService接口客户端例程
/******************************************************************************/
include('../lib/nusoap.php');
// 创建一个soapclient对象,参数是server的WSDL
$client = new soapclient('http://localhost:8080/IBEIntf/services/IBEService?wsdl', 'wsdl');
// 参数转为数组形式传递
$aryPara = array('strUsername'=>'username', 'strPassword'=>MD5('password'));
// 调用远程函数
$aryResult = $client->call('login',$aryPara);
//echo $client->debug_str;
/*
if (!$err=$client->getError()) {
print_r($aryResult);
} else {
print "ERROR: $err";
}
*/
$document=$client->document;
echo
$document
SoapDocument;
?>
这是我在网上搜的例子,但不能运行,求高手帮帮我,我的Q1175210752
------解决方案--------------------
在浏览器地址栏输入 http://localhost:8080/IBEIntf/services/IBEService?wsdl
后,得到什么?
相关文章
相关视频
推荐阅读