nusoap codeigniter webservice server and client
I am new in webservice, and have been looking in how to create web service, at the moment, I think I somehow manage to make one but it does not return any result. I am using nusoap and also Codeigniter. The WebService Server is in an application called WebServiceTester below is the code for the Bills_WS controller that serve as the server: 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;