1
0
mirror of https://github.com/php/php-src.git synced 2026-03-27 09:42:22 +01:00

Caching of temorary WSDL files was disabled.

This commit is contained in:
Dmitry Stogov
2004-02-12 11:02:16 +00:00
parent 5979799de0
commit 866816efef

View File

@@ -53,6 +53,7 @@ EOF;
$f = fopen($fname,"w");
fwrite($f,$wsdl);
fclose($f);
ini_set("soap.wsdl_cache_enabled",0);
$x = new SoapClient($fname, array("trace"=>1,"exceptions"=>0));
$y = new SoapServer($fname);
$y->addfunction("test");