tags:

views:

511

answers:

1

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
I needed ?wsdl not .wsdl. +1 though. I'd +2 you if you'd linked to the docs ;)
Rob Fonseca-Ensor
For anyone reading this, there is now a v2: http://your_installation/rpc/soap/jirasoapservice-v2?wsdl
Ben Challenor
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