开发者

Soapcall without parameters results in a blank screen

开发者 https://www.devze.com 2023-02-18 23:27 出处:网络
When do a soapcall on a function that does not require parameters my screen turns blank. While when I run a soapc开发者_如何学运维all that does require parameters I receive data/errors.

When do a soapcall on a function that does not require parameters my screen turns blank. While when I run a soapc开发者_如何学运维all that does require parameters I receive data/errors.

try {
    $r = $this->c->__soapCall($func, $params);
} catch( Exception $e ) {
    return $e->getMessage();
}

$this->c = of course the soapclient who connets correctly.

Also I get no errors in my log or returned to my screen. There are no syntax errors.


Problem was that $parameters were null, which is not allowed.

0

精彩评论

暂无评论...
验证码 换一张
取 消