Source for file jSoapRequest.class.php

Documentation is available at jSoapRequest.class.php

  1. <?php
  2. /**
  3. @package     jelix
  4. @subpackage  core_request
  5. @author      Sylvain de Vathaire
  6. @contributor Laurent Jouanneau
  7. @copyright   2008 Sylvain de Vathaire, 2011 Laurent Jouanneau
  8. @link        http://www.jelix.org
  9. @licence     GNU Lesser General Public Licence see LICENCE file or http://www.gnu.org/licenses/lgpl.html
  10. */
  11.  
  12. /**
  13. * handle a soap call. The response has to be a soap response.
  14. @package  jelix
  15. @subpackage core_request
  16. */
  17. class jSoapRequest extends jRequest {
  18.  
  19.     public $type = 'soap';
  20.  
  21.     public $defaultResponseType = 'soap';
  22.  
  23.     public $authorizedResponseClass = 'jResponseSoap';
  24.  
  25.     public $soapMsg;
  26.  
  27.     function __construct(){  }
  28.  
  29.     /**
  30.      * Paramameters initalisation prior to request handling
  31.      */
  32.     function initService(){
  33.  
  34.        if(isset($_GET["service"]&& $_GET['service'!= ''){
  35.             list($module$action=  explode('~',$_GET["service"]);
  36.         }else{
  37.             throw new JException('jWSDL~errors.service.param.required');
  38.         }
  39.  
  40.         $this->params['module'$module;
  41.         $this->params['action'$action;
  42.  
  43.         if(isset($HTTP_RAW_POST_DATA&& ($HTTP_RAW_POST_DATA!='')){
  44.             $this->soapMsg = $HTTP_RAW_POST_DATA;
  45.         }else{
  46.             $this->soapMsg = file("php://input");
  47.             $this->soapMsg = implode(" "$this->soapMsg);
  48.         }
  49.  
  50.         $this->_initUrlData()//Need to be called manually before coordinator call of init because needed for the WSDL generation 
  51.     }
  52.  
  53.  
  54.     /**
  55.      * Overload of the init method to prevent calling twice _initUrlData
  56.      */
  57.     function init(){}
  58.  
  59.     protected function _initParams(){}
  60.  
  61. }

Documentation generated on Mon, 19 Sep 2011 14:13:39 +0200 by phpDocumentor 1.4.3