Welcome Guest, Not a member yet? Register   Sign In
CI SOAP Server Problem
#10

[eluser]abbasmn[/eluser]
to use soapserver in your controller you should use an empty constructor and put parent::Controller() in a function. please see below:
Code:
class Ws_server extends Controller
{
    private $test;
    function  __construct()
        {
            
        }
    function my_server()
    {        
        try
        {
    
        ini_set("soap.wsdl_cache_enabled", "0");
           $server = new SoapServer("http://localhost/Hello.wsdl",
          array('soap_version' => SOAP_1_2));
           $server->setClass("Ws_server");
           $server->handle();
                      
            }
        catch (SoapFault $exception)    
        {
                echo $exception;      
          }
    }
    
    public function hello($someone)
        {
        //this function is called by client and is in Hello.wsdl
        return "Hello".$someone." My QUEUE:".$this-> my_q();
        
        }

    private function my_q()
    {
        parent::Controller();
           $this->load->model('search_model','');
           $this->test= $this->search_model->get_queue();    
           return $this->test;
    }
            
}


Messages In This Thread
CI SOAP Server Problem - by El Forum - 03-19-2010, 05:49 AM
CI SOAP Server Problem - by El Forum - 03-19-2010, 06:24 AM
CI SOAP Server Problem - by El Forum - 03-19-2010, 06:25 AM
CI SOAP Server Problem - by El Forum - 03-19-2010, 06:26 AM
CI SOAP Server Problem - by El Forum - 03-19-2010, 06:31 AM
CI SOAP Server Problem - by El Forum - 03-19-2010, 07:16 AM
CI SOAP Server Problem - by El Forum - 03-21-2010, 04:27 PM
CI SOAP Server Problem - by El Forum - 03-29-2010, 12:14 PM
CI SOAP Server Problem - by El Forum - 03-29-2010, 12:21 PM
CI SOAP Server Problem - by El Forum - 06-09-2010, 12:32 PM
CI SOAP Server Problem - by El Forum - 06-09-2010, 12:42 PM
CI SOAP Server Problem - by El Forum - 06-09-2010, 01:06 PM
CI SOAP Server Problem - by El Forum - 06-09-2010, 01:19 PM
CI SOAP Server Problem - by El Forum - 06-09-2010, 02:42 PM



Theme © iAndrew 2016 - Forum software by © MyBB