public function withPortAndArg()
 {
     $t = HttpTransport::transportFor(new URL('test+v2://example.com:443'));
     $this->assertEquals('example.com', $t->host);
     $this->assertEquals(443, $t->port);
     $this->assertEquals('v2', $t->arg);
 }
 /**
  * Constructor
  *
  * @param   var url a string or a peer.URL object
  */
 public function __construct($url)
 {
     $this->url = $url instanceof URL ? $url : new URL($url);
     $this->transport = HttpTransport::transportFor($this->url);
 }
 /**
  * Set proxy
  *
  * @param   peer.http.HttpProxy proxy
  */
 public function setProxy(HttpProxy $proxy)
 {
     parent::setProxy($proxy);
     $this->proxySocket = $this->newSocket(create(new URL())->setHost($proxy->host)->setPort($proxy->port));
 }
Esempio n. 4
0
 /**
  * parses the wsdl document
  * 
  * @param string $wsdl path or URL
  * @access private 
  */
 function parseWSDL($wsdl = '')
 {
     $this->debug("parse WSDL at path={$wsdl}");
     if ($wsdl == '') {
         $this->debug('no wsdl passed to parseWSDL()!!');
         $this->setError('no wsdl passed to parseWSDL()!!');
         return false;
     }
     // parse $wsdl for url format
     $wsdl_props = parse_url($wsdl);
     if (isset($wsdl_props['scheme']) && ($wsdl_props['scheme'] == 'http' || $wsdl_props['scheme'] == 'https')) {
         $this->debug('getting WSDL http(s) URL ' . $wsdl);
         // get wsdl
         $tr = new HttpTransport($wsdl, $this->curl_options, $this->use_curl);
         $tr->request_method = 'GET';
         $tr->useSOAPAction = false;
         if ($this->proxyhost && $this->proxyport) {
             $tr->setProxy($this->proxyhost, $this->proxyport, $this->proxyusername, $this->proxypassword);
         }
         if ($this->authtype != '') {
             $tr->setCredentials($this->username, $this->password, $this->authtype, array(), $this->certRequest);
         }
         $tr->setEncoding('gzip, deflate');
         $wsdl_string = $tr->send('', $this->timeout, $this->response_timeout);
         //$this->debug("WSDL request\n" . $tr->outgoing_payload);
         //$this->debug("WSDL response\n" . $tr->incoming_payload);
         $this->appendDebug($tr->getDebug());
         // catch errors
         if ($err = $tr->getError()) {
             $errstr = 'Getting ' . $wsdl . ' - HTTP ERROR: ' . $err;
             $this->debug($errstr);
             $this->setError($errstr);
             unset($tr);
             return false;
         }
         unset($tr);
         $this->debug("got WSDL URL");
     } else {
         // $wsdl is not http(s), so treat it as a file URL or plain file path
         if (isset($wsdl_props['scheme']) && $wsdl_props['scheme'] == 'file' && isset($wsdl_props['path'])) {
             $path = isset($wsdl_props['host']) ? $wsdl_props['host'] . ':' . $wsdl_props['path'] : $wsdl_props['path'];
         } else {
             $path = $wsdl;
         }
         $this->debug('getting WSDL file ' . $path);
         if ($fp = @fopen($path, 'r')) {
             $wsdl_string = '';
             while ($data = fread($fp, 32768)) {
                 $wsdl_string .= $data;
             }
             fclose($fp);
         } else {
             $errstr = "Bad path to WSDL file {$path}";
             $this->debug($errstr);
             $this->setError($errstr);
             return false;
         }
     }
     $this->debug('Parse WSDL');
     // end new code added
     // Create an XML parser.
     $this->parser = xml_parser_create();
     // Set the options for parsing the XML data.
     // xml_parser_set_option($parser, XML_OPTION_SKIP_WHITE, 1);
     xml_parser_set_option($this->parser, XML_OPTION_CASE_FOLDING, 0);
     // Set the object for the parser.
     xml_set_object($this->parser, $this);
     // Set the element handlers for the parser.
     xml_set_element_handler($this->parser, 'start_element', 'end_element');
     xml_set_character_data_handler($this->parser, 'character_data');
     // Parse the XML file.
     if (!xml_parse($this->parser, $wsdl_string, true)) {
         // Display an error message.
         $errstr = sprintf('XML error parsing WSDL from %s on line %d: %s', $wsdl, xml_get_current_line_number($this->parser), xml_error_string(xml_get_error_code($this->parser)));
         $this->debug($errstr);
         $this->debug("XML payload:\n" . $wsdl_string);
         $this->setError($errstr);
         return false;
     }
     // free the parser
     xml_parser_free($this->parser);
     $this->debug('Parsing WSDL done');
     // catch wsdl parse errors
     if ($this->getError()) {
         return false;
     }
     return true;
 }