Lines Matching refs:http

164 		'SOAP-ENV' => 'http://schemas.xmlsoap.org/soap/envelope/',
166 'xsi' => 'http://www.w3.org/2001/XMLSchema-instance',
186 'http://www.w3.org/2001/XMLSchema' => array(
201 'http://www.w3.org/1999/XMLSchema' => array(
206 …'http://schemas.xmlsoap.org/soap/encoding/' => array('base64'=>'string','array'=>'array','Array'=>…
670 …* @param string $encodingStyle optional (usually 'http://schemas.xmlsoap.org/soap/encoding/' for e…
768 if(strpos($qname,':') && !ereg('^http://',$qname)){
1282 …if($v == 'http://www.w3.org/2001/XMLSchema' || $v == 'http://www.w3.org/1999/XMLSchema' || $v == '…
1318 $v = $attrs['http://schemas.xmlsoap.org/wsdl/:arrayType'];
1323 …oap.org/wsdl/:arrayType'] = $this->defaultNamespace[$pos] . ':' . $attrs['http://schemas.xmlsoap.o…
1331 if (isset($attrs['http://schemas.xmlsoap.org/wsdl/:arrayType'])) {
1345 …if(isset($attrs['http://schemas.xmlsoap.org/wsdl/:arrayType']) || $this->getLocalPart($aname) == '…
1349 $v = $attrs['http://schemas.xmlsoap.org/wsdl/:arrayType'];
1816 $typeDef['type'] = 'http://www.w3.org/2001/XMLSchema:string';
4436 …viceName,$namespace = false,$endpoint = false,$style='rpc', $transport = 'http://schemas.xmlsoap.o…
4485 $this->wsdl->namespaces['wsdl'] = 'http://schemas.xmlsoap.org/wsdl/';
4495 …$this->wsdl->schemas[$schemaTargetNamespace][0]->imports['http://schemas.xmlsoap.org/wsdl/'][0] = …
4842 …if ($v == 'http://www.w3.org/2001/XMLSchema' || $v == 'http://www.w3.org/1999/XMLSchema' || $v == …
5102 $bindingType = 'http://schemas.xmlsoap.org/wsdl/soap12/';
5133 $bindingType = 'http://schemas.xmlsoap.org/wsdl/soap12/';
5164 $bindingType = 'http://schemas.xmlsoap.org/wsdl/soap12/';
5840 if($ns == $this->XMLSchemaVersion || $ns == 'http://schemas.xmlsoap.org/soap/encoding/'){
5914 $tt_prefix = $this->getPrefixFromNamespace('http://xml.apache.org/xml-soap');
5920 $tt_prefix = $this->getPrefixFromNamespace('http://xml.apache.org/xml-soap');
6031 $this->getPrefixFromNamespace('http://schemas.xmlsoap.org/soap/encoding/') .
6073 …$xml = "<$name$elementNS xsi:type=\"".$this->getPrefixFromNamespace('http://schemas.xmlsoap.org/so…
6403 'transport' => 'http://schemas.xmlsoap.org/soap/http',
6997 …if ($this->message[$pos]['type'] == 'Vector' && $this->message[$pos]['type_namespace'] == 'http://…
7321 $encodingStyle = 'http://schemas.xmlsoap.org/soap/encoding/';
7480 $http =& $this->persistentConnection;
7482 $http = new soap_transport_http($this->endpoint, $this->curl_options, $this->use_curl);
7484 $http->usePersistentConnection();
7487 $http->setContentType($this->getHTTPContentType(), $this->getHTTPContentTypeCharset());
7488 $http->setSOAPAction($soapaction);
7490 $http->setProxy($this->proxyhost,$this->proxyport,$this->proxyusername,$this->proxypassword);
7493 …$http->setCredentials($this->username, $this->password, $this->authtype, array(), $this->certReque…
7496 $http->setEncoding($this->http_encoding);
7501 $this->responseData = $http->send($msg,$timeout,$response_timeout,$this->cookies);
7509 $this->responseData = $http->sendHTTPS($msg,$timeout,$response_timeout,$this->cookies);
7513 $this->request = $http->outgoing_payload;
7514 $this->response = $http->incoming_payload;
7515 $this->appendDebug($http->getDebug());
7516 $this->UpdateCookies($http->incoming_cookies);
7520 $http->clearDebug();
7522 $this->persistentConnection = $http;
7526 if($err = $http->getError()){
7532 …$this->debug('got response, length='. strlen($this->responseData).' type='.$http->incoming_headers…
7533 return $this->parseResponse($http->incoming_headers, $this->responseData);