Advertisement
Armandobs14

SOAP CodeIgniter

Jan 22nd, 2014
397
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 2.42 KB | None | 0 0
  1. <?php
  2. require_once ('lib/nusoap.php');
  3.  
  4. //
  5. //  MY_Model.php
  6. //  Joint2
  7. //
  8. //  Created by Armando on 2012-09-27.
  9. //  Copyright 2012 Armando. All rights reserved.
  10. //
  11.  
  12. class MY_Model extends CI_Model {
  13.     //Define Host
  14.     private $host = 'localhost:8080';
  15.  
  16.     protected $WS;
  17.     protected $nameSpace;
  18.     protected $data;
  19.  
  20.     function __construct() {
  21.         $this->data = new stdClass();
  22.         parent::__construct();
  23.     }
  24.  
  25.     public function call($operation, $params) {
  26.         $client = new nusoap_client($this->WS);
  27.         $err = $client->getError();
  28.  
  29.         if ($err) {
  30.             echo '<h2>Constructor error</h2><pre>' . $err . '</pre>';
  31.             exit;
  32.         }
  33.         return $client->call($operation, $params, $this->nameSpace);
  34.     }
  35.  
  36.     protected function setWebService($ws) {
  37.     //Sujeito a adaptação
  38.         $this->WS = "http://" . $this->host . "/WS/" . $ws . "?wsdl";
  39.     }
  40.  
  41.     protected function setNameSpace($nameSpace) {
  42.     //Sujeito a adaptação
  43.         $this->nameSpace = "http://" . $nameSpace . "/";
  44.     }
  45.  
  46.     protected function getMainArray($array) {
  47.        
  48.         if($array == ""){
  49.             return NULL;
  50.         }
  51.        
  52.         $tmp = array();
  53.         $key = array_keys($array);
  54.         if (isset($array['title']) || is_string($key[0])){
  55.             array_push($tmp, $array);
  56.             return $tmp;
  57.         }        
  58.         return $array;
  59.     }
  60. }
  61.  
  62. /************** Model ************/
  63. <?php
  64.  
  65. //
  66. //  projeto_model.php
  67. //  Joint2
  68. //  
  69. //  Created by Armando on 2012-09-27.
  70. //  Copyright 2012 Armando. All rights reserved.
  71. //
  72. class eventos_model extends MY_Model {
  73.  
  74.     public function __construct() {
  75.         parent::__construct();
  76.    
  77.         $this->setWebService('WSEvento');
  78.         $this->setNameSpace('evento');
  79.     }
  80.  
  81.     public function getAllEvents() {
  82.     $this->data->someProperty = "somedata";
  83.         return $this->getMainArray($this->call('retrieveAllEvent', (array) $this->data));
  84.     }
  85.  
  86.  
  87.  
  88. /****** Controller ********/
  89. <?php
  90.  
  91. /**
  92.  * Description of eventos
  93.  *
  94.  * @author williams
  95.  */
  96. class eventos extends MY_Controller {
  97.  
  98.     public function __construct() {
  99.         parent::__construct();
  100.         $this->load->model('eventos_model', 'Eventos');    
  101.     }
  102.  
  103.     public function index() {
  104.         $this->data->result = $this->Eventos->getAllEvents();
  105.         $this->load->view("eventos/eventos_view", (array) $this->data);
  106.     }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement