16

I know how to disable WSDL-cache in PHP, but what about force a re-caching of the WSDL?

This is what i tried: I run my code with caching set to disabled, and the new methods showed up as espected. Then I activated caching, but of some reason my old non-working wsdl showed up again. So: how can I force my new WSDL to overwrite my old cache?

Community
  • 1
  • 1
qualbeen
  • 1,534
  • 4
  • 16
  • 27

4 Answers4

40

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.

Tom Haigh
  • 57,217
  • 21
  • 114
  • 142
12

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-*
G Mawr
  • 1,135
  • 11
  • 18
  • 1
    Not a good solution. I don't have access on server .... and even if I do .. there's many soap services running. Would be impossible to find out which cache file corresponds to the ws I'm working now – Diego Favero Dec 04 '13 at 13:58
3

Delete the old WSDL from the cache.

foxy
  • 2,158
  • 15
  • 11
  • Not a good solution. I don't have access on server .... and even if I do .. there's many soap services running. Would be impossible to find out which cache file corresponds to the ws I'm working now – Diego Favero Dec 04 '13 at 13:57
1

I'd try

$limit = ini_get('soap.wsdl_cache_limit');
ini_set('soap.wsdl_cache_limit', 0);
ini_set('soap.wsdl_cache_limit', $limit);

Or possibly set soap.wsdl_cache_ttl to 0 and back

Greg
  • 316,276
  • 54
  • 369
  • 333