Lines Matching refs:wsdl

1538 							$this->usedNamespaces['wsdl'] = $this->namespaces['wsdl'];
1539 $contentStr .= ' wsdl:arrayType="'.$this->contractQName($v).'"';
3173 var $wsdl = false; variable in soap_server
3192 * @param mixed $wsdl file path or URL (string), or wsdl instance (object)
3195 function soap_server($wsdl=false){ argument
3233 if($wsdl){
3235 if (is_object($wsdl) && (get_class($wsdl) == 'wsdl')) {
3236 $this->wsdl = $wsdl;
3237 $this->externalWSDLURL = $this->wsdl->wsdl;
3240 $this->debug('Create wsdl from ' . $wsdl);
3241 $this->wsdl = new wsdl($wsdl);
3242 $this->externalWSDLURL = $wsdl;
3244 $this->appendDebug($this->wsdl->getDebug());
3245 $this->wsdl->clearDebug();
3246 if($err = $this->wsdl->getError()){
3280 } elseif ($this->wsdl) {
3282 print $this->wsdl->serialize($this->debug_flag);
3285 $this->appendDebug($this->varDump($this->wsdl));
3292 } elseif ($data == '' && $this->wsdl) {
3294 print $this->wsdl->webDescription();
3496 if ($this->wsdl) {
3497 if ($this->opData = $this->wsdl->getOperationData($this->methodname)) {
3500 } elseif ($this->opData = $this->wsdl->getOperationDataForSoapAction($this->SOAPAction)) {
3640 if($this->wsdl){
3648 $return_val = $this->wsdl->serializeRPCParameters($this->methodname,'output',$opParams);
3649 $this->appendDebug($this->wsdl->getDebug());
3650 $this->wsdl->clearDebug();
3651 if($errstr = $this->wsdl->getError()){
3669 if ($this->wsdl) {
3687 if($this->wsdl){
3689 $this->appendDebug($this->wsdl->getDebug());
3697 …$this->responseSOAP = $this->serializeEnvelope($payload,$this->responseHeaders,$this->wsdl->usedNa…
3794 if(isset($this->wsdl) && is_object($this->wsdl)){
3795 if($this->wsdl->getOperationData($operation)){
4037 $this->wsdl = new wsdl;
4038 $this->wsdl->serviceName = $serviceName;
4039 $this->wsdl->endpoint = $endpoint;
4040 $this->wsdl->namespaces['tns'] = $namespace;
4041 $this->wsdl->namespaces['soap'] = 'http://schemas.xmlsoap.org/wsdl/soap/';
4042 $this->wsdl->namespaces['wsdl'] = 'http://schemas.xmlsoap.org/wsdl/';
4044 $this->wsdl->namespaces['types'] = $schemaTargetNamespace;
4046 … $this->wsdl->schemas[$schemaTargetNamespace][0] = new xmlschema('', '', $this->wsdl->namespaces);
4047 … $this->wsdl->schemas[$schemaTargetNamespace][0]->schemaTargetNamespace = $schemaTargetNamespace;
4048 …$this->wsdl->schemas[$schemaTargetNamespace][0]->imports['http://schemas.xmlsoap.org/soap/encoding…
4050 $this->wsdl->bindings[$serviceName.'Binding'] = array(
4055 $this->wsdl->ports[$serviceName.'Port'] = array(
4075 class wsdl extends nusoap_base { class
4077 var $wsdl; variable in wsdl
4114 * @param string $wsdl WSDL document URL
4123 …function wsdl($wsdl = '',$proxyhost=false,$proxyport=false,$proxyusername=false,$proxypassword=fal… function in wsdl
4125 $this->wsdl = $wsdl;
4134 if ($wsdl != "") {
4135 $this->debug('initial wsdl URL: ' . $wsdl);
4136 $this->parseWSDL($wsdl);
4147 $wsdlparts = parse_url($this->wsdl); // this is bogusly simple!
4173 $wsdlparts = parse_url($this->wsdl); // this is bogusly simple!
4230 * @param string $wsdl path or URL
4233 function parseWSDL($wsdl = '') argument
4235 if ($wsdl == '') {
4242 $wsdl_props = parse_url($wsdl);
4245 $this->debug('getting WSDL http(s) URL ' . $wsdl);
4247 $tr = new soap_transport_http($wsdl);
4273 $path = $wsdl;
4306 $wsdl,
6464 * @param bool $wsdl optional, set to true if using WSDL
6474 …function soapclient($endpoint,$wsdl = false,$proxyhost = false,$proxyport = false,$proxyusername =… argument
6485 if($wsdl){
6487 $this->wsdl = $endpoint;
6488 $this->endpoint = $this->wsdl->wsdl;
6496 …$this->wsdl =& new wsdl($this->wsdlFile,$this->proxyhost,$this->proxyport,$this->proxyusername,$th…
6498 $this->appendDebug($this->wsdl->getDebug());
6499 $this->wsdl->clearDebug();
6501 if($errstr = $this->wsdl->getError()){
6504 } elseif($this->operations = $this->wsdl->getOperations()){
6560 if($this->endpointType == 'wsdl' && $opData = $this->getOperationData($operation)){
6603 $this->debug('got wsdl error: '.$errstr);
6604 $this->setError('wsdl error: '.$errstr);
6607 } elseif($this->endpointType == 'wsdl') {
6989 $proxy->wsdl = $this->wsdl;