1

ID を使用して問題の詳細を取得しようとすると、数値形式の例外が発生します。

RemoteIssue ri = jira.getIssueById(JIRAtoken, string.Format(IssueKey));

ここjiratokenに文字列があります。しかし、例外を与える。誰でも何か考えがありますか?

4

1 に答える 1

0

JIRA (4) の SOAP Web サービス API を使用して、同じ問題が発生しました。

getIssueの代わりに使用して解決しましたgetIssueById。ではgetIssue、JIRA は MYPROJECT-3 のようなキーを想定しています。

今、私はこのようなリクエストを送信し、それは動作します:

<soapenv:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:soap="http://soap.rpc.jira.atlassian.com">
   <soapenv:Header/>
   <soapenv:Body>
      <soap:getIssue soapenv:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
         <in0 xsi:type="xsd:string">MyAuthToken</in0>
         <in1 xsi:type="xsd:string">MYPROJECT-1</in1>
      </soap:getIssue>
   </soapenv:Body>
</soapenv:Envelope>
于 2013-03-22T17:31:18.017 に答える