Exemple #1
0
 /**
  * SOAP_Transport_HTTP Constructor
  *
  * @access public
  *
  * @param string $url       HTTP url to SOAP endpoint.
  * @param string $encoding  Encoding to use.
  */
 function SOAP_Transport_HTTP($url, $encoding = SOAP_DEFAULT_ENCODING)
 {
     parent::SOAP_Base('HTTP');
     $this->urlparts = @parse_url($url);
     $this->url = $url;
     $this->encoding = $encoding;
 }
Exemple #2
0
 /**
  * SOAP_Transport_SMTP Constructor
  *
  * @param string $url  mailto: address.
  *
  * @access public
  */
 function SOAP_Transport_SMTP($url, $encoding = 'US-ASCII')
 {
     parent::SOAP_Base('SMTP');
     $this->encoding = $encoding;
     $this->urlparts = @parse_url($url);
     $this->url = $url;
 }