Soapcall without parameters results in a blank screen

試著忘記壹切 提交于 2020-01-05 05:58:28

问题


When do a soapcall on a function that does not require parameters my screen turns blank. While when I run a soapcall 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.


回答1:


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



来源:https://stackoverflow.com/questions/5402946/soapcall-without-parameters-results-in-a-blank-screen

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!