| /plugin/mantis/lib/ |
| 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); 88 $this->debug("Expired $wsdl ($filename) from cache"); 95 $this->debug("$wsdl ($filename) not in cache (1)"); 103 $this->debug("Got $wsdl ($filename) from cache"); 106 $this->debug("$wsdl ($filename) not in cache (2)"); [all …]
|
| D | class.soap_server.php | 151 var $wsdl = false; variable in nusoap_server 170 * @param mixed $wsdl file path or URL (string), or wsdl instance (object) 173 function nusoap_server($wsdl=false){ argument 211 if($wsdl){ 213 if (is_object($wsdl) && (get_class($wsdl) == 'wsdl')) { 214 $this->wsdl = $wsdl; 215 $this->externalWSDLURL = $this->wsdl->wsdl; 218 $this->debug('Create wsdl from ' . $wsdl); 219 $this->wsdl = new wsdl($wsdl); 220 $this->externalWSDLURL = $wsdl; [all …]
|
| D | changelog | 5 - applied patch from "BZC ToOn'S" - fixes wsdl serialization when no parameters 25 - wsdl: apply patch from Sven to workaround single schema limitation 26 - wsdl: apply a variant of the patch from Holger to handle empty values for array by serializing an… 41 - wsdl: add proxy authentication 43 - soapclient: allow proxy information in ctor, so that it can be used for wsdl 67 - wsdl: only specify encodingStyle in the input/output soap bindings when it is not empty (thanks G… 81 - wsdl, soapclient, soap_parser: patch submitted by Mark Spavin as described by 83 > Changes for the multiple/nested imports from the wsdl file. This builds an 86 > instead of your local disk. Local wsdl files should still work (untested). 91 - wsdl, soapclient: fix some PHP notices from previous update [all …]
|
| D | class.soapclient.php | 87 * @param bool $wsdl optional, set to true if using WSDL 97 …function nusoap_client($endpoint,$wsdl = false,$proxyhost = false,$proxyport = false,$proxyusernam… argument 107 $this->debug("ctor wsdl=$wsdl timeout=$timeout response_timeout=$response_timeout"); 111 if($wsdl){ 113 $this->wsdl = $endpoint; 114 $this->endpoint = $this->wsdl->wsdl; 120 $this->wsdl = null; 172 if ($this->endpointType == 'wsdl' && is_null($this->wsdl)) { 178 if($this->endpointType == 'wsdl' && $opData = $this->getOperationData($operation)){ 221 $this->debug('got wsdl error: '.$errstr); [all …]
|
| D | nusoap.php | 1636 $this->usedNamespaces['wsdl'] = $this->namespaces['wsdl']; 1637 $contentStr .= ' wsdl:arrayType="'.$this->contractQName($v).'"'; 3560 var $wsdl = false; variable in nusoap_server 3579 * @param mixed $wsdl file path or URL (string), or wsdl instance (object) 3582 function nusoap_server($wsdl=false){ argument 3620 if($wsdl){ 3622 if (is_object($wsdl) && (get_class($wsdl) == 'wsdl')) { 3623 $this->wsdl = $wsdl; 3624 $this->externalWSDLURL = $this->wsdl->wsdl; 3627 $this->debug('Create wsdl from ' . $wsdl); [all …]
|
| D | class.wsdl.php | 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 != "") { [all …]
|
| D | class.xmlschema.php | 568 $this->usedNamespaces['wsdl'] = $this->namespaces['wsdl']; 569 $contentStr .= ' wsdl:arrayType="'.$this->contractQName($v).'"';
|
| /plugin/farm/install/ |
| 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');
|
| D | barnatroot.htaccess | 9 RewriteCond %{REQUEST_URI} !^farm.wsdl 15 RewriteCond %{REQUEST_URI} !^farm.wsdl
|
| D | farm.htaccess | 9 RewriteCond %{REQUEST_URI} !^farm.wsdl
|
| /plugin/findologicxmlexport/vendor/phpunit/phpunit-mock-objects/tests/MockObject/Generator/ |
| 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);
|
| 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);
|
| 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/findologicxmlexport/vendor/phpunit/phpunit-mock-objects/src/Framework/MockObject/Generator/ |
| D | wsdl_class.tpl.dist | 3 public function __construct($wsdl, array $options) 5 parent::__construct('{wsdl}', $options);
|
| /plugin/googlesearch/ |
| D | nusoap.php | 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); [all …]
|
| /plugin/farm/ |
| 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);
|
| 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/sympaauth/ |
| D | README | 9 $conf['plugin']['sympaauth']['sympaSoapService'] = <URL of Sympa SOAP wsdl>;
|