0

谁能帮我解决我的问题?我正在尝试从我的 Web 服务获取数据,有时服务器响应使用无效的 XML。我注意到这取决于数据大小。当响应达到一定大小时,它以</SOAP-ENV:Envelop而不是结束</SOAP-ENV:Envelope>

这是我的示例代码:一个控制器中的客户端和服务器。方法“成功”工作正常,但类似的方法“失败”没有。甚至更多:对于 nginx 和 php-fpm “成功”方法也失败了(对于具有 php_mod “成功”方法的 apache 有效)。

<?php

class SoapController extends CController
{
    public function actions()
    {
        return array('wsdl' => array('class' => 'CWebServiceAction'));
    }

    private function getData($size)
    {
        return array_fill(0, $size, '18ad96e6-5526-11e0-9c19-00248c654095');
    }

    /**
     * @return array
     * @soap
     */
    public function success()
    {
        return $this->getData(104);
    }

    /**
     * @return array
     * @soap
     */
    public function fail()
    {
        return $this->getData(105);
    }

    public function actionTest()
    {
        $client = new SoapClient($this->createAbsoluteUrl('wsdl'), array('trace' => true));

        $methods = array('success', 'fail');

        foreach ($methods as $method) {

            try {
                $result = call_user_func(array($client, $method));
                $result = count($result);
            } catch (SoapFault $ex) {
                $result = $ex->getMessage();
            }

            echo $method . ' result: ' . $result . '<br>';
            echo $method . ' response: <br>' . htmlspecialchars($client->__getLastResponse()) . '<br><br>';
        }
    }
}

软件版本:

  • Ubuntu 服务器 12.10
  • Yii 1.1.13
  • PHP 5.4.6
  • 阿帕奇 2.2.22
  • Nginx 1.2.1
4

1 回答 1

0

问题出在控制器文件中。它具有带有 BOM的 UTF-8 字符集。删除 BOM 后,它工作正常。

于 2013-02-20T06:10:52.890 回答