ID を使用して問題の詳細を取得しようとすると、数値形式の例外が発生します。
RemoteIssue ri = jira.getIssueById(JIRAtoken, string.Format(IssueKey));
ここjiratoken
に文字列があります。しかし、例外を与える。誰でも何か考えがありますか?
ID を使用して問題の詳細を取得しようとすると、数値形式の例外が発生します。
RemoteIssue ri = jira.getIssueById(JIRAtoken, string.Format(IssueKey));
ここjiratoken
に文字列があります。しかし、例外を与える。誰でも何か考えがありますか?
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>