dryk50495 2015-03-25 07:06
浏览 49
已采纳

如何在我的codeigniter soap服务器代码中声明多个函数?

I tried to declare function as normal function too,but didn't solved my problem. I was able to run the server code with single function as found in many tutorials but cannot add multiple function. plz suggest me how can i do that.

<?php
defined('BASEPATH') OR exit('No direct script access allowed');

class Support extends CI_Controller {
public $ns="";

function __construct()
{

    parent::__construct();

    $HTTP_RAW_POST_DATA = isset($HTTP_RAW_POST_DATA) ? $HTTP_RAW_POST_DATA : '';

    $this->load->library("nusoap_library");
    $this->load->model('support_model');

    $this->nusoap_server = new soap_server();

    $this->ns = 'http://'.$_SERVER['HTTP_HOST'].'/index.php/soapserver/';
    //$ns ="urn:server";

    $this->nusoap_server->configureWSDL("SupportWsdl", $this->ns); // wsdl cinfiguration
    $this->nusoap_server->wsdl->schemaTargetNamespace = $this->ns; // server namespace


    //first simple function
    $this->nusoap_server->register('hello',
        array('username' => 'xsd:string'),  //parameter
        array('return' => 'xsd:string'),  //output
        'urn:server',   //namespace
        'urn:'.$this->ns.'helloServer',  //soapaction
        'rpc', // style
        'encoded', // use
        'Just say hello');  //description

    //this is the second webservice entry point/function 
    $this->nusoap_server->register('login',
        array('username' => 'xsd:string', 'password'=>'xsd:string'),  //parameters
        array('return' => 'tns:Person'),  //output
        'urn:server',   //namespace
        'urn:'.$this->ns.'loginServer',  //soapaction
        'rpc', // style
        'encoded', // use
        'Check user login');  //description

       //first function implementation
    function hello() {
        function hello($username){
            $this->nusoap_server->service($HTTP_RAW_POST_DATA);
            return 'Howdy, '.$username.'!';  
        }    
    }

    //second function implementation 
    function login($username, $password) {
            //should do some database query here
            //just some dummy result
            return array(
            'id_user'=>1,
            'fullname'=>'John Reese',
            'email'=>'john@reese.com',
            'level'=>99
        );
        // $this->nusoap_server->service($HTTP_RAW_POST_DATA);
    }     
}



function index()
{
    $this->nusoap_server->service(file_get_contents("php://input"));// read raw data from request body
}

}

  • 写回答

1条回答 默认 最新

  • douan0729 2015-03-29 08:17
    关注

    I figured out that we should declare our all our soap functions inside index function. Instead of declaring class function. if any one know how to define register class function show how to do it plz. My soap server side code

    <?php
    defined('BASEPATH') OR exit('No direct script access allowed');
    
    class Support extends CI_Controller {
    public $ns="";
    
    function __construct()
    {
    
        parent::__construct();
    
        $this->load->library("nusoap_library");
        $this->nusoap_server = new soap_server();
    
        $this->ns = 'http://'.$_SERVER['HTTP_HOST'].'/index.php/soapserver/';
    
        $this->nusoap_server->configureWSDL("SupportWsdl", $this->ns); // wsdl cinfiguration
        $this->nusoap_server->wsdl->schemaTargetNamespace = $this->ns; // server namespace
    
         //first simple function
        $this->nusoap_server->register('hello',
            array('username' => 'xsd:string'),  //parameter
            array('return' => 'xsd:string'),  //output
            'urn:server',   //namespace
            'urn:'.$this->ns.'hello',  //soapaction
            'rpc', // style
            'encoded', // use
            'Just say hello');  //description
    
        $this->nusoap_server->register('bye',
            array('username' => 'xsd:string'),  //parameter
            array('return' => 'xsd:string'),  //output
            'urn:server',   //namespace
            'urn:'.$this->ns.'bye',  //soapaction
            'rpc', // style
            'encoded', // use
            'Just say bye');  //    
    
    }
    
    function index()
    {
           function hello($username){
            //$this->nusoap_server->service($HTTP_RAW_POST_DATA);
            return 'Howdy, '.$username.'!';  
        } 
    
    
     function bye($username){
            //$this->nusoap_server->service($HTTP_RAW_POST_DATA);
            return 'bye, '.$username.'!';  
        } 
        $this->nusoap_server->service(file_get_contents("php://input"));// read raw data from request body
    }    
    }
    

    My client side code

    class Attendance extends MX_Controller {
    public $data = array();
    private $permission = array();
    private $branch = array();
    
    function __construct(){
        parent::__construct();
    
        //This is your webservice server WSDL URL address
        $wsdl = "http://localhost/SOAP_Final/index.php/support?wsdl";
    
        $this->load->library("nusoap_library");
        $this->nusoap_server = new soap_server(); 
    
    }
    
    
    public function index()
    {  
    
    }
    
    
    
    function call_hello()
    {
        $this->nusoap_client = new nusoap_client("http://localhost/SoapFinalVersion/index.php/support?wsdl");
    
        if($this->nusoap_client->fault)
        {
             $text = 'Error: '.$this->nusoap_client->fault;
             echo "Hello ";
        }
        else
        {
            if ($this->nusoap_client->getError())
            {
                 $text = 'Error: '.$this->nusoap_client->getError();
                 echo "Hello ";
            }
            else
            {   
                 $row = $this->nusoap_client->call(
                          'hello',
                          array('username'=>'john')
                        );       
                  var_dump($row);      
            }
        }
    }
    }
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 drone 推送镜像时候 purge: true 推送完毕后没有删除对应的镜像,手动拷贝到服务器执行结果正确在样才能让指令自动执行成功删除对应镜像,如何解决?
  • ¥15 求daily translation(DT)偏差订正方法的代码
  • ¥15 js调用html页面需要隐藏某个按钮
  • ¥15 ads仿真结果在圆图上是怎么读数的
  • ¥20 Cotex M3的调试和程序执行方式是什么样的?
  • ¥20 java项目连接sqlserver时报ssl相关错误
  • ¥15 一道python难题3
  • ¥15 牛顿斯科特系数表表示
  • ¥15 arduino 步进电机
  • ¥20 程序进入HardFault_Handler