Force re-cache of WSDL in php. - Stack Overflow most recent 30 from stackoverflow.com 2009-12-08T14:22:35Z http://stackoverflow.com/feeds/question/323561 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/323561/force-re-cache-of-wsdl-in-php 0 Force re-cache of WSDL in php. qualbeen 2008-11-27T11:57:53Z 2009-10-27T17:28:59Z <p>I know how to disable <a href="http://stackoverflow.com/questions/303488/in-php-how-can-you-clear-a-wsdl-cache">WSDL-cache</a> in PHP, but what about force a re-caching of the WSDL? </p> <p>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?</p> http://stackoverflow.com/questions/323561/force-re-cache-of-wsdl-in-php/323582#323582 0 Answer by Greg for Force re-cache of WSDL in php. Greg 2008-11-27T12:11:39Z 2008-11-27T12:11:39Z <p>I'd try </p> <pre><code>$limit = ini_get('soap.wsdl_cache_limit'); ini_set('soap.wsdl_cache_limit', 0); ini_set('soap.wsdl_cache_limit', $limit); </code></pre> <p>Or possibly set <code>soap.wsdl_cache_ttl</code> to 0 and back</p> http://stackoverflow.com/questions/323561/force-re-cache-of-wsdl-in-php/323588#323588 2 Answer by foxy for Force re-cache of WSDL in php. foxy 2008-11-27T12:14:06Z 2008-11-27T12:14:06Z <p>Delete the old WSDL from the cache.</p> http://stackoverflow.com/questions/323561/force-re-cache-of-wsdl-in-php/323600#323600 2 Answer by Tom Haigh for Force re-cache of WSDL in php. Tom Haigh 2008-11-27T12:23:37Z 2009-07-01T10:21:12Z <p>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)</p> <pre><code>ini_set('soap.wsdl_cache_ttl', 1); </code></pre> <p>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.</p> http://stackoverflow.com/questions/323561/force-re-cache-of-wsdl-in-php/881939#881939 0 Answer by G Mawr for Force re-cache of WSDL in php. G Mawr 2009-05-19T10:19:18Z 2009-05-19T10:19:18Z <p>In my php.ini there's an entry which looks like this:</p> <pre><code>soap.wsdl_cache_dir="/tmp" </code></pre> <p>In /tmp, I found a bunch of files named wsdl-[some hexadecimal string]</p> <p>I can flush the cached wsdl files with this command:</p> <pre><code>rm /tmp/wsdl-* </code></pre> http://stackoverflow.com/questions/323561/force-re-cache-of-wsdl-in-php/1632399#1632399 0 Answer by Renil Raphy for Force re-cache of WSDL in php. Renil Raphy 2009-10-27T17:28:59Z 2009-10-27T17:28:59Z <p>Thank you very much. This caching issues lost my 1 day. Now solved the issue with the help of above comment.. once again Thank u.</p>