I\'m working on a JIRA implementation and need to make use of the API.
Does anyone know of an existing .NET wrapper for the JIRA SOAP API?
I was also unable to get parameters on the methods when using a service reference. What I had to do was a strange 'add web reference' trick.
http:///rpc/soap/jirasoapservice-v2?wsdl
You will now have a 'Web Reference' folder under service references, with the
as the name.
var jira = new com.myserver.JiraSoapServiceService();
var loginToken = jira.login("user", "pass");
var issue = new com.myserver.RemoteIssue();
jira.createIssue(loginToken, issue);