我是网络服务的新手,一直在研究如何创建网络服务,目前,我想我设法做了一个,但它没有返回任何结果。我正在使用 nusoap 和 Codeigniter。
WebService 服务器位于一个名为WebServiceTester
下面是Bills_WS
用作服务器的控制器的代码:
class Bills_WS extends CI_Controller
{
function __construct()
{
parent:: __construct ();
}
public function index()
{
$this->load->library('Nusoap_lib');
$namespace = "http://localhost:8080/webservicetester/bills_ws.php?wsdl";
$server = new nusoap_server;
$server->configureWSDL('WebServiceTester');
$server->wsdl->schemaTargetNamespace = $namespace;
$server->register('hello');
$HTTP_RAW_POST_DATA = isset($HTTP_RAW_POST_DATA) ? $HTTP_RAW_POST_DATA : '';
$server->service($HTTP_RAW_POST_DATA);
}
function hello()
{
return "greetings from server";
}
}
为了调用它,我在事务控制器中使用的 ws_client 库下另一个名为 ussccsv1 的应用程序(同一台机器)中调用它:
class Ws_client
{
private $CI = null;
function __construct()
{
$this->CI =& get_instance();
}
public function transaction_send_ws($param)
{
$this->CI->load->library('nuSoap_lib');
$url = 'http://localhost/webservicetester.php/bills_ws?wsdl';
$client = new nusoap_client($url);
$response = $client->call('hello');
if($client->fault)
{
echo "FAULT:".$client->faultcode;
echo "string: ".$client->faultstring;
}
else
{
$r = $response;
count($r);
echo "count".count($r);
}
}
}
我还包括nusoap_lib
我正在使用的:
class Nusoap_lib
{
function nusoap_lib()
{
include(APPPATH.'libraries/nusoap/nusoap'.EXT);
}
}
我的问题是: 1. 我如何调用 web 服务bills_ws
?是$url
正确的吗?因为到目前为止它给了我 404 错误 HTTP 未找到。2. 故障在ws_client
或bills_ws
?3. 但是当我回应它时它给了我一个count($r)
参与。ws_client = 1
一直在尝试遵循本教程,但我似乎并不完全理解它: - http://www.phpeveryday.com/articles/PHP-Web-Services-Fetching-Data-From-Database-P105.html - http ://ellislab.com/forums/viewthread/59710/
先感谢您。