我正在Symfony中编写一个SOAP应用程序,并且对于我的所有请求,我收到错误.过程’getClusterName’不存在.
奇怪的是,当我在纯PHP中创建测试SOAP应用程序时,它工作正常,但Symfony中的相同代码返回错误.
另一个奇怪的事情是,在SOAP服务器代码中,我列出了带有$server-> getFunctions()的可用服务函数,它返回服务函数的数组,并且getClusterName在该数组中.因此该功能对于服务器是已知的,但它无法调用它.
在Symfony中编写服务时,我遵循this article,这是我的代码:
客户:
namespace Prj\SoapBundle\Controller; class SoapController extends Controller { public function indexAction() { $client = new \SoapClient('http://localhost/test.wsdl'); $client->getClusterName();
服务器:
namespace Prj\SoapBundle\Controller; class SoapController extends Controller { public function indexAction() { ini_set("soap.wsdl_cache_enabled","0"); $server = new \SoapServer($this->container->getParameter('wsdl')); $server->setClass('SoapBundle\HelloService'); $server->handle();
服务:
namespace Prj\SoapBundle; class HelloService { public function getClusterName() { return '<?xml version="1.0" encoding="utf-8"?><root>Hello!</root>'; } }
* .wsdl文件似乎是正确的,因为它将调用与控制器绑定,并与vanilla PHP服务一起正常工作.
在Internet上,此错误通常由缓存的wsdl解释,但这是通过将soap.wsdl_cache_enabled参数设置为零来在服务器代码中处理的.
即使设置soap.wsdl_cache_enabled = 0,也请尝试清空/ tmp文件夹.
原文链接:https://www.f2er.com/php/137965.html