diff options
| author | Dmitry Stogov <dmitry@php.net> | 2004-02-12 11:02:16 +0000 |
|---|---|---|
| committer | Dmitry Stogov <dmitry@php.net> | 2004-02-12 11:02:16 +0000 |
| commit | 866816efef7570375cd369784b2aae7760feb323 (patch) | |
| tree | 4e93285de52d75ff38d815339052ae3aeaeac59c | |
| parent | 5979799de023f9d38f1a96524ab9730f9ce3c325 (diff) | |
| download | php-git-866816efef7570375cd369784b2aae7760feb323.tar.gz | |
Caching of temorary WSDL files was disabled.
| -rw-r--r-- | ext/soap/tests/schema/test_schema.inc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/ext/soap/tests/schema/test_schema.inc b/ext/soap/tests/schema/test_schema.inc index 379e5a158a..6ef38a0c65 100644 --- a/ext/soap/tests/schema/test_schema.inc +++ b/ext/soap/tests/schema/test_schema.inc @@ -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"); |
