其实根据常用的webservice清除缓存方法,在client端加入这样一句话:
ini_set("soap.wsdl_cache_enabled", "0");
应该就可以了,但是处理了好久,在本地测试没问题,放到服务器上就不行,一直提示:Procedure 'getSent' not present
后来查看PHP的配置文件php.ini,找到这样一句话: soap.wsdl_cache_dir="/tmp"
然后进入对应目录,看到有这样子的文件:
wsdl-root-37c8f47f71a35a60f667be40ae619d0b
wsdl开头的文件,都是webservice的缓存文件,删掉这些文件,再试,一切正常了。
yii webservice 提示:Procedure 'getSent' not present 错误的解决方法
原创
©著作权归作者所有:来自51CTO博客作者lij2960的原创作品,请联系作者获取转载授权,否则将追究法律责任
提问和评论都可以,用心的回复会被更多人看到
评论
发布评论
相关文章
-
【LeetCode】39. 组合总和
【LeetCode】39. 组合总和
leetcode 数据结构与算法 C++ -
Error: Can't connect to MySQL server on 'localhost' (10057)错误的解决方法
Error: Can't connect to MySQL server on 'localhost' (10057)--------------------------------------------------------------------------------服务器原字串: "Can't connect to MySQL server on '%-.64s' (%d)" 信息串:
server Error Can connect localhost -
error: 'Access denied for user 'root'@'localhost' (using password: YES)'解决方法
# /etc/init.d/mysql stop# mysqld_safe --user=mysql --skip-grant-tables --skip-networking &# mysql -u root mysqlmysql> UPDATE user SET Password=PASSWORD('newpassword') where USER='root';mysql>
mysql error password where localhost