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 回答