PHP SoapServer返回空的xml文档(空字符串)

时间:2018-11-05 16:43:49

标签: php soap soapserver

handle()中的

SoapServer返回空的xml文档(空字符串)。我的代码基本上是:

    $soapService = new soapService();

    $soapServer = new \SoapServer('/path-to/my.wsdl');
    $soapServer->setObject($soapService);
    $soapServer->handle();

没有抛出错误...我在做什么错?

wsdl是https://software.intel.com/en-us/articles/intel-math-kernel-library-intel-mkl-intel-mkl-100-threading

1 个答案:

答案 0 :(得分:0)

解决我自己的问题...我只尝试使用HTTP GET请求进行肥皂操作,而SoapServer仅使用HTTP POST发送响应。