Force re-cache of WSDL in php Force re-cache of WSDL in php php php

Force re-cache of WSDL in php


I guess when you disable caching it will also stop writing to the cache. So when you re-enable the cache the old cached copy will still be there and valid. You could try (with caching enabled)

ini_set('soap.wsdl_cache_ttl', 1);

I put in a time-to-live of one second in because I think if you put zero in it will disable the cache entirely but not remove the entry. You probably will only want to put that line in when you want to kill the cached copy.


In my php.ini there's an entry which looks like this:

soap.wsdl_cache_dir="/tmp"

In /tmp, I found a bunch of files named wsdl-[some hexadecimal string]

I can flush the cached wsdl files with this command:

rm /tmp/wsdl-*


Delete the old WSDL from the cache.