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?
+3
A:
In a Visual Studio .NET project, right click the project references and choose 'Add Service Reference', enter the URL of JIRA's WSDL descriptor (http://your_installation/rpc/soap/jiraservice-v1.wsdl), and Visual Studio will auto-generate a .NET class for accessing the JIRA SOAP API.
The parameter names aren't particularly meaningful so you'll need to refer back to the documentation quite a bit at first.
Luke Halliwell
2009-02-24 08:34:46
I needed ?wsdl not .wsdl. +1 though. I'd +2 you if you'd linked to the docs ;)
Rob Fonseca-Ensor
2010-05-11 12:56:48
For anyone reading this, there is now a v2: http://your_installation/rpc/soap/jirasoapservice-v2?wsdl
Ben Challenor
2010-06-03 19:34:27
And the docs mentioned are at:http://confluence.atlassian.com/display/JIRA/Creating+a+SOAP+Clienthttp://docs.atlassian.com/software/jira/docs/api/rpc-jira-plugin/latest/com/atlassian/jira/rpc/soap/JiraSoapService.html
Ben Challenor
2010-06-03 19:46:35