1

個人用アプリの 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->addresse = "http://localhost/mantisbt/api/soap/mantisconnect.php?wsdl"

ブラウザでこのアドレスにアクセスすると、正しい XHTML ファイルが表示されます

エラーがあるのはこの行です:$client = new SoapClient($this->adresse);

手伝ってくれてありがとう。

4

2 に答える 2

0

正しいエントリ ポイントはhttp://localhost/mantisbt/api/soap/mantisconnect.php(?wsdl部分を省略) です。

于 2012-09-27T13:12:14.767 に答える