propel
[ class tree: propel ] [ index: propel ] [ all elements ]

Source for file soapClient.class.php

Documentation is available at soapClient.class.php

  1. <?php
  2. require_once 'SOAP/Client.php';
  3.  
  4. class soapClient extends SOAP_CLient{
  5.  
  6.  
  7.   function soapClient($host,$port)
  8.   {
  9.       
  10.    
  11.       
  12.       return parent::SOAP_Client($host,false,$port);
  13.       
  14.       // $soapclient = new SOAP_Client($host,false,$port);
  15.       // return $soapclient;
  16.   }
  17.  
  18.   function processSoap($method,$params){
  19.       $response $this->call($method,$params);
  20.       return $response;
  21.  
  22.   }
  23.  
  24.  
  25.  
  26.  
  27. //   function GetNodeServersSoap($method){
  28. //
  29. //
  30. //
  31. //$addr = "10.10.20.67";
  32. //$port = 7001;
  33. //$proto = "tcp";
  34. //$host = "" . $proto . "://" . $addr . ":" . $port;
  35. //
  36. //
  37. //$a = array("nil"=>"true");
  38. //
  39. ////$method = "listDomains";
  40. //$meth = $method;
  41. //
  42. //$ret = $soapclient->call($meth,array($a));
  43. //
  44. //
  45. //     return $ret;
  46. //   }
  47.  
  48.  
  49.  
  50.  
  51. }
  52. ?>

Documentation generated on Fri, 19 Jun 2009 10:49:28 +0100 by phpDocumentor 1.4.2