PHP:SoapClient不再按预期工作

时间:2016-09-25 22:00:30

标签: php xml web-services soap soapui

我对PHP不是很熟悉,但大约一个月前我写了一个脚本来从SOAP Web服务中提取事件数据以显示在数字标牌上。它已经工作了好几个星期,但它最近破了。

以下是相关的PHP代码......

$WSDL_URL = 'http://anprodca.active.com/uofg/servlet/ActiveNetWS?wsdl';

$params = array(
    "ws_system_user" => $credentials,
    "resource_ids" => array(intval($facilityID)),
    "dates" => $date,
    "include_linked_resources" => 0,
    "returning_render_customer_id" => 0
);

$soap = new SoapClient($WSDL_URL);
$response = $soap->wsGetResourceBookings($params);

... $credentials包含数组中的userNamepasswordkeepAlive值。

当我得到它时,我收到以下异常消息:looks like we got no XML document。我在stackoverflow上看到类似的帖子,关于由于麻烦的隐形字符而导致格式错误的响应问题,但事实并非如此。来自__getLastResponse()的响应似乎是来自某种重定向的HTML?

我仍然可以使用 SOAPUI 获得所需的结果。以下是在WSDL URL

生成的请求中传递的XML示例
<?xml version="1.0" encoding="UTF-8"?>
<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns1="http://ANWebServices/">
    <SOAP-ENV:Body>
        <ns1:wsGetResourceBookings>
            <ws_system_user>
                <keepAlive>false</keepAlive>
                <password>password</password>
                <userName>username</userName>
            </ws_system_user>
            <resource_ids>
                <entries>27</entries>
            </resource_ids>
            <dates>09/25/2016</dates>
            <include_linked_resources>0</include_linked_resources>
            <returning_render_customer_id>0</returning_render_customer_id>
        </ns1:wsGetResourceBookings>
    </SOAP-ENV:Body>
</SOAP-ENV:Envelope>

在SoapClient中使用跟踪选项和__getLastRequest()我得到了以下XML,当使用SOAPUI传递时也可以正常运行...

<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:anw="http://ANWebServices/" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns1="http://ANWebServices/">
    <soapenv:Header/>
   <soapenv:Body>
        <anw:wsGetResourceBookings>
         <ws_system_user>
                <keepAlive>false</keepAlive>
            <password>password</password>
            <userName>username</userName>
         </ws_system_user>
         <resource_ids>
            <entries>27</entries>
         </resource_ids>
         <dates>09/25/2016</dates>
         <include_linked_resources>0</include_linked_resources>
         <returning_render_customer_id>0</returning_render_customer_id>
      </anw:wsGetResourceBookings>
   </soapenv:Body>
</soapenv:Envelope>

我认为WSDL文件已经更改但是没有。 服务器端没有任何改变,它仍然使用相同版本的PHP,具有相同的配置等。我已经尝试禁用WSDL缓存以及NuSoap库无济于事。我似乎无法弄清楚为什么我不能使用SoapClient来获取正确的响应。任何见解都将不胜感激,谢谢!

1 个答案:

答案 0 :(得分:1)

我能够自己解决这个问题 - 只是发布这个以防万一有人遇到类似的问题。

他们的WSDL文件指定了错误的端点URL。我只需要使用__setLocation()明确指定它。现在我的PHP看起来像这样:

...
$soap = new SoapClient($WSDL_URL);
$soap->__setLocation($WSDL_URL);
$response = $soap->wsGetResourceBookings($params);
...

1行修复