PHP SoapServer return 空 xml 文档(空字符串)

PHP SoapServer return empty xml document (empty string)

handle() 来自 SoapServer return 空 xml 文档(空字符串)。我的代码基本上是:

    $soapService = new soapService();

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

没有抛出任何错误...我做错了什么?

wsdl 是 here

解决我自己...我已经尝试过仅使用 HTTP GET 请求的肥皂和仅使用 HTTP 的 SoapServer 发送响应 POST。