PHP SOAP faultcode:soap:Server

时间:2010-09-23 16:14:35

标签: php soap soapfault

谷歌到处搜集没有运气,谁能告诉我这里发生了什么?

PHP版本5.2.10

尝试发送SOAP请求并将其恢复。

SoapFault exception: [soap:Server] The application encountered an unhandled system exception.

故障代码:     faultcode:soap:服务器

2 个答案:

答案 0 :(得分:2)

我发现了我的问题所以我会发布结果,因为它们很少见(我认为)。

问题原来是我用SOAP调用连接(和查询)到另一个数据库。 User / Pass组合不正确,并且导致SOAP请求也引发错误。

BTW不是我的设计,只是我的问题

答案 1 :(得分:1)

有时它是因为你没有WSDL(端点)的正确URL,你需要告诉设置为true(即wsdl)

在使用nusoap的代码中:

$client = new nusoap_client('https://something.com/etc/file.ext?WSDL', true);