从网络服务 nusoap 接收 pdf 内容的奇怪行为

Weird behaviour receiving a pdf content from a webservice nusoap

我创建了一个调用 pdf 文件内容的 Web 服务的函数。网络服务运行良好。

我想问题出在文件太大的时候。

我可以在另一台有相同错误的服务器上解决同样的问题抛出 memory_limit 并且他的 php 版本是 5.4。 Nusoap 版本是 0.9.5,我通过 composer 的 bundle 使用它。

这个包来自 https://packagist.org/packages/econea/nusoap,我使用的是 v0.9.6。

在我无法修复错误的服务器中,我使用 php 7.0。本服Nusoap版本也是0.9.5

/**
 * @param string $docId
 * @return string
 */
public function getDocumentFromDocId(string $docId)
{
    $client = new \nusoap_client('http://'.$this->ip.'/arcdoc/WebServiceServer.php?wsdl', true);
    $response = $client->call('GetDoc', array(
        'xxxx1' => 'xxxxxx',
        'xxxx2' => base64_encode('xxxxx'),
        'xxxx3' => base64_encode("yyyyyyy"),
        'xxxx4' => base64_encode($docId)
    ));
    var_dump($response);
    return $response;
}

当我var_dump()内容回复这个回复时:

/var/www/html/project/src/AppBundle/Service/whatever.php:55:boolean false

如果文件大于 6-8M 将是 false $response 但如果文件小于 6-8M 则不是问题。

所以,我可以说 web 服务在小于 6-8M 的文件中运行良好。

知道为什么我没有得到答案吗?

我正在测试将相同的 pdf 从 9M 减少到 6M 并且效果很好,所以它一定与文件的大小有关。就我而言,似乎在 7-9M.

时开始表现不佳

我不确定,但这可能与 PHP 中允许的内存大小有关。只是尝试增加并测试它。您可以从 php.ini.htaccess(不建议)编辑它。

php.ini 示例:

memory_limit = 256M

.htaccess 示例:

php_value memory_limit 256M

P.S。您可以更改 256 任何您需要的内存。

$paramWSDLS = array(
    'soap_version' => SOAP_1_1,
    'encoding' => 'ISO-8859-15',
    'cache_wsdl' => WSDL_CACHE_NONE,
    'exceptions' => false,
    'trace' => true,
    'style' => SOAP_DOCUMENT,
    'use' => SOAP_LITERAL
);
$wsclient = new SoapClient('http://'.$this->ip.'/arcdoc/WebServiceServer.php?wsdl', $paramWSDLS );
$parametros = array(
   'xxxx' => 'xxxxxx',
   'xxxx2' => base64_encode('xxxxx2'),
   'xxxx3' => utf8_decode('xxxxx3'),
   'xxxx4' => utf8_decode('xxxxx4'),
   'showMask' => false
);
$response = $wsclient->__soapCall('GetDoc', $parametros );

不知道为什么,但是使用这个 SoapClient 解决了这个问题。