Force re-cache of WSDL in php. - Stack Overflow most recent 30 from stackoverflow.com2009-12-08T14:22:35Zhttp://stackoverflow.com/feeds/question/323561http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/323561/force-re-cache-of-wsdl-in-php0Force re-cache of WSDL in php.qualbeen2008-11-27T11:57:53Z2009-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#3235820Answer by Greg for Force re-cache of WSDL in php.Greg2008-11-27T12:11:39Z2008-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#3235882Answer by foxy for Force re-cache of WSDL in php.foxy2008-11-27T12:14:06Z2008-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#3236002Answer by Tom Haigh for Force re-cache of WSDL in php.Tom Haigh2008-11-27T12:23:37Z2009-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#8819390Answer by G Mawr for Force re-cache of WSDL in php.G Mawr2009-05-19T10:19:18Z2009-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#16323990Answer by Renil Raphy for Force re-cache of WSDL in php.Renil Raphy2009-10-27T17:28:59Z2009-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>