肥皂与螳螂的连接



我正在尝试与 Web 服务螳螂错误跟踪器建立 soap 连接,以获得个人应用程序。

  public function issues_get($username, $password) {
    try {
       $client = new SoapClient($this->adresse);
        $response = $client->mc_filter_get_issues($username, $password, $this->projectId, $this->ersFilter, 0, 0);
        $response = convert::object2array($response);
        return $response;
    }
    catch (SoapFault $e){
        echo $e->faultcode; 
        //$e->getMessage();
    }
}

怎么了?

$this->地址 = "http://localhost/mantisbt/api/soap/mantisconnect.php?wsdl"

当我使用浏览器访问此地址时,我看到正确的XHTML文件

正是这一行,这是一个错误:$client = new SoapClient($this->adresse);

感谢您的帮助。

正确的入口点是http://localhost/mantisbt/api/soap/mantisconnect.php(省略?wsdl部分)。

我解决了这个问题。我不知道为什么,但错误是"本地主机"。我把IP地址和脚本工作正常。

$this->adresse = "http://192.x.x.x.x/mantisbt/api/soap/mantisconnect.php?wsdl" 

谢谢大家的帮助:)

相关内容

  • 没有找到相关文章

最新更新