vote up 0 vote down star

In through php_info() where the wsdl cache is held (/tmp), but I don't necessarily know if it is safe to delete all files starting with wsdl.

Yes, I should be able to just delete everything from /tmp, but I don't know what else this could effect if I delete any all wsdl files.

flag

1 Answer

vote up 3 vote down check

you can safely delete the WSDL cache files. if you wish to prevent future caching:

ini_set("soap.wsdl_cache_enabled", 0);

or dynamically:

$client = new SoapClient('http://somewhere.com/?wsdl', array('cache_wsdl' => 0) );
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.