/plugin/mantis/lib/ |
H A D | class.wsdlcache.php | 56 * @param string $wsdl The URL of the wsdl instance 60 function createFilename($wsdl) { argument 61 return $this->cache_dir.'/wsdlcache-' . md5($wsdl); 77 * @param string $wsdl The URL of the wsdl instance 81 function get($wsdl) { argument 82 $filename = $this->createFilename($wsdl); 95 $this->debug("$wsdl ($filename) not in cache (1)"); 103 $this->debug("Got $wsdl ($filename) from cache"); 185 * @param string $wsdl The URL of the wsdl instance 189 function remove($wsdl) { argument [all …]
|
H A D | class.soap_server.php | 151 var $wsdl = false; variable in nusoap_server 211 if($wsdl){ 213 if (is_object($wsdl) && (get_class($wsdl) == 'wsdl')) { 214 $this->wsdl = $wsdl; 215 $this->externalWSDLURL = $this->wsdl->wsdl; 219 $this->wsdl = new wsdl($wsdl); 474 if ($this->wsdl) { 625 if($this->wsdl){ 677 if($this->wsdl){ 785 if(isset($this->wsdl) && is_object($this->wsdl)){ [all …]
|
H A D | changelog | 41 - wsdl: add proxy authentication 94 - wsdl: support multiple SOAP ports 129 - wsdl: use expandEntities 158 - wsdl: post-process after all imports 174 - wsdl: add addSimpleType 210 - wsdl: standardize parsing error message 216 - wsdl: do schema imports even if there are no wsdl imports 294 - wsdl: add addElement method 361 - wsdl: call parent constructor 381 - wsdl: improve debug and comments [all …]
|
H A D | class.soapclient.php | 111 if($wsdl){ 113 $this->wsdl = $endpoint; 114 $this->endpoint = $this->wsdl->wsdl; 120 $this->wsdl = null; 221 $this->debug('got wsdl error: '.$errstr); 222 $this->setError('wsdl error: '.$errstr); 225 } elseif($this->endpointType == 'wsdl') { 339 $this->wsdl->clearDebug(); 342 if ($errstr = $this->wsdl->getError()) { 367 $this->wsdl->fetchWSDL($this->wsdlFile); [all …]
|
H A D | nusoap.php | 3620 if($wsdl){ 3623 $this->wsdl = $wsdl; 3624 $this->externalWSDLURL = $this->wsdl->wsdl; 3628 $this->wsdl = new wsdl($wsdl); 4223 if(isset($this->wsdl) && is_object($this->wsdl)){ 4480 $this->wsdl = new wsdl; 4606 $this->wsdl = $wsdl; 4784 $wsdl, 7179 if($wsdl){ 7182 $this->endpoint = $this->wsdl->wsdl; [all …]
|
H A D | class.wsdl.php | 15 class wsdl extends nusoap_base { class 17 var $wsdl; variable in wsdl 84 $this->fetchWSDL($wsdl); 92 function fetchWSDL($wsdl) { argument 94 $this->wsdl = $wsdl; 96 if ($this->wsdl != "") { 192 * @param string $wsdl path or URL 195 function parseWSDL($wsdl = '') { argument 198 if ($wsdl == '') { 239 $path = $wsdl; [all …]
|
H A D | class.xmlschema.php | 568 $this->usedNamespaces['wsdl'] = $this->namespaces['wsdl']; 569 $contentStr .= ' wsdl:arrayType="'.$this->contractQName($v).'"';
|
/plugin/findologicxmlexport/vendor/phpunit/phpunit-mock-objects/tests/MockObject/Generator/ |
H A D | wsdl_class_partial.phpt | 2 PHPUnit_Framework_MockObject_Generator::generateClassFromWsdl('GoogleSearch.wsdl', 'GoogleSearch', … 14 __DIR__ . '/../../_fixture/GoogleSearch.wsdl', 22 public function __construct($wsdl, array $options) 24 parent::__construct('%s/GoogleSearch.wsdl', $options);
|
H A D | wsdl_class.phpt | 2 PHPUnit_Framework_MockObject_Generator::generateClassFromWsdl('GoogleSearch.wsdl', 'GoogleSearch') 14 __DIR__ . '/../../_fixture/GoogleSearch.wsdl', 21 public function __construct($wsdl, array $options) 23 parent::__construct('%s/GoogleSearch.wsdl', $options);
|
H A D | wsdl_class_namespace.phpt | 2 PHPUnit_Framework_MockObject_Generator::generateClassFromWsdl('GoogleSearch.wsdl', 'GoogleSearch') 14 __DIR__ . '/../../_fixture/GoogleSearch.wsdl', 23 public function __construct($wsdl, array $options) 25 parent::__construct('%s/GoogleSearch.wsdl', $options);
|
/plugin/farm/install/ |
H A D | farmstructurecreator.php.bak | 133 // Create farmer/wsdl.php 134 $wsdl = @file_get_contents($farmconf['farmer'].'lib/plugins/farm/install/wsdl.base'); 135 if(!$wsdl) die('Could not load wsdl base'); 136 $file = $farmconf['farmwebroot'].'farm.wsdl'; 137 $wsdl = str_replace('{wsdl}', $file, $wsdl); 138 …$wsdl = str_replace('{location}', $farmconf['farmwebroot'].$farmconf['farmer'].'lib/plugins/farm/s… 139 if($fp = fopen('farm.wsdl', 'w')) { 140 fwrite($fp, $wsdl); 142 }else die('Could not save farm.wsdl');
|
H A D | barnatroot.htaccess | 9 RewriteCond %{REQUEST_URI} !^farm.wsdl 15 RewriteCond %{REQUEST_URI} !^farm.wsdl
|
H A D | farm.htaccess | 9 RewriteCond %{REQUEST_URI} !^farm.wsdl
|
/plugin/findologicxmlexport/vendor/phpunit/phpunit-mock-objects/src/Framework/MockObject/Generator/ |
H A D | wsdl_class.tpl.dist | 3 public function __construct($wsdl, array $options) 5 parent::__construct('{wsdl}', $options);
|
/plugin/farm/ |
H A D | config.class.php | 296 $wsdl = @file_get_contents(DOKU_FARM_PLUGIN.'install/wsdl.base'); 297 if(!$wsdl) { 302 $wsdl = str_replace('{wsdl}', $file, $wsdl); 303 …$wsdl = str_replace('{location}', $this->manager->conf['farmwebroot'].$this->manager->conf['farmer… 305 fwrite($fp, $wsdl);
|
H A D | soapserver.php | 224 $wsdl = $farmconf['farmfsroot'].'farm.wsdl'; variable 230 $server = new SoapServer($wsdl, array('trace' => $trace, 'soap_version' => $soap_version)); 236 }else echo @file_get_contents($wsdl);
|
/plugin/googlesearch/ |
H A D | nusoap.php | 3233 if($wsdl){ 3236 $this->wsdl = $wsdl; 3237 $this->externalWSDLURL = $this->wsdl->wsdl; 3241 $this->wsdl = new wsdl($wsdl); 3794 if(isset($this->wsdl) && is_object($this->wsdl)){ 4037 $this->wsdl = new wsdl; 4125 $this->wsdl = $wsdl; 4306 $wsdl, 6485 if($wsdl){ 6488 $this->endpoint = $this->wsdl->wsdl; [all …]
|
/plugin/sympaauth/ |
H A D | README | 9 $conf['plugin']['sympaauth']['sympaSoapService'] = <URL of Sympa SOAP wsdl>;
|