Lines Matching full:proxy

585 	* set proxy info here
681 * dynamically creates an instance of a proxy class,
690 //$this->debug("proxy class: $evalStr");
697 // instantiate proxy object
698 eval("\$proxy = new nusoap_proxy_$r('');");
699 // transfer current wsdl data to the proxy thereby avoiding parsing the wsdl twice
700 $proxy->endpointType = 'wsdl';
701 $proxy->wsdlFile = $this->wsdlFile;
702 $proxy->wsdl = $this->wsdl;
703 $proxy->operations = $this->operations;
704 $proxy->defaultRpcParams = $this->defaultRpcParams;
706 $proxy->soap_defencoding = $this->soap_defencoding;
707 $proxy->username = $this->username;
708 $proxy->password = $this->password;
709 $proxy->authtype = $this->authtype;
710 $proxy->certRequest = $this->certRequest;
711 $proxy->requestHeaders = $this->requestHeaders;
712 $proxy->endpoint = $this->endpoint;
713 $proxy->forceEndpoint = $this->forceEndpoint;
714 $proxy->proxyhost = $this->proxyhost;
715 $proxy->proxyport = $this->proxyport;
716 $proxy->proxyusername = $this->proxyusername;
717 $proxy->proxypassword = $this->proxypassword;
718 $proxy->http_encoding = $this->http_encoding;
719 $proxy->timeout = $this->timeout;
720 $proxy->response_timeout = $this->response_timeout;
721 $proxy->persistentConnection = &$this->persistentConnection;
722 $proxy->decode_utf8 = $this->decode_utf8;
723 $proxy->curl_options = $this->curl_options;
724 $proxy->bindingType = $this->bindingType;
725 $proxy->use_curl = $this->use_curl;
726 return $proxy;
730 * dynamically creates proxy class code
732 * @return string PHP/NuSOAP code for the proxy class
739 $evalStr = 'A proxy can only be created for a WSDL client';
789 * dynamically creates proxy class code
791 * @return string PHP/NuSOAP code for the proxy class