Home  >  Article  >  Backend Development  >  PHP 使用nusoap调用c++写的webservice 报HTTP 405 方法未找到异常

PHP 使用nusoap调用c++写的webservice 报HTTP 405 方法未找到异常

WBOY
WBOYOriginal
2016-06-13 12:45:17789browse

PHP 使用nusoap调用c++写的webservice 报HTTP 405 方法未找到错误

本帖最后由 yc19881009 于 2013-05-13 10:06:35 编辑
<br />
$strdbServerModStatusIp ="10.XXX.XX.XX:XXXX";<br />
$serviceURL = "http://" . $strdbServerModStatusIp . ":56789";<br />
$soap = new nusoap_client($serviceURL . "?WSDL");<br />
$str=$soap->call("DDPServiceProc", $parameters); <br />
<br />
if (!$err = $soap->getError()) {<br />
    echo " return :", $str;<br />
} else {<br />
    echo " false :", $err;<br />
}<br />


然后各种报HTTP 405方法未找到方法
再此求助各位大侠
PHP Web服务 SOAP
Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn