Home  >  Article  >  Backend Development  >  PHP SOAP 问题。有时会请求不到wsdl文件,但文件是没问题的很奇怪

PHP SOAP 问题。有时会请求不到wsdl文件,但文件是没问题的很奇怪

WBOY
WBOYOriginal
2016-06-23 13:06:181047browse

平时能正常调用,但是偶尔会出现

SOAP-ERROR: Parsing WSDL: Couldn't load from 'xxx/xxx?wsdl' : failed to load external entity "xxx/xxx?wsdl"
这种情况,而且一旦出现,后面就全都请求不到这个wsdl文件了。。

即使我把这个wsdl文件copy到我的程序目录里,调用本地文件也会出现这种情况。。。

搜索了很久,还是没找到原因。。

有没有前辈能指点下?



回复讨论(解决方案)

创建客户端时,参数数组中加 'cache_wsdl' => WSDL_CACHE_NONE

创建客户端时,参数数组中加 'cache_wsdl' => WSDL_CACHE_NONE


是什么原因呢?缓存。。?

默认时缓存的,所以一旦读不到,就次次读不到
指定不缓存,一次读不到,还有下次

网络是一个复杂的系统,偶尔出点错是很正常的

默认时缓存的,所以一旦读不到,就次次读不到
指定不缓存,一次读不到,还有下次

网络是一个复杂的系统,偶尔出点错是很正常的



谢谢前辈~上回也是您这边帮忙解决的。感谢。
Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn