Lines Matching refs:wsdl
15 class wsdl extends nusoap_base { class
17 var $wsdl; variable in wsdl
61 * @param string $wsdl WSDL document URL
72 …function wsdl($wsdl = '',$proxyhost=false,$proxyport=false,$proxyusername=false,$proxypassword=fal… function in wsdl
74 $this->debug("ctor wsdl=$wsdl timeout=$timeout response_timeout=$response_timeout");
84 $this->fetchWSDL($wsdl);
92 function fetchWSDL($wsdl) { argument
93 $this->debug("parse and process WSDL path=$wsdl");
94 $this->wsdl = $wsdl;
96 if ($this->wsdl != "") {
97 $this->parseWSDL($this->wsdl);
108 $wsdlparts = parse_url($this->wsdl); // this is bogusly simple!
134 $wsdlparts = parse_url($this->wsdl); // this is bogusly simple!
192 * @param string $wsdl path or URL
195 function parseWSDL($wsdl = '') { argument
196 $this->debug("parse WSDL at path=$wsdl");
198 if ($wsdl == '') {
205 $wsdl_props = parse_url($wsdl);
208 $this->debug('getting WSDL http(s) URL ' . $wsdl);
210 $tr = new soap_transport_http($wsdl, $this->curl_options, $this->use_curl);
239 $path = $wsdl;
272 $wsdl,