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?
From stackoverflow
-
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.
Rob Fonseca-Ensor : I needed ?wsdl not .wsdl. +1 though. I'd +2 you if you'd linked to the docs ;)Ben Challenor : For anyone reading this, there is now a v2: http://your_installation/rpc/soap/jirasoapservice-v2?wsdlBen Challenor : And the docs mentioned are at: http://confluence.atlassian.com/display/JIRA/Creating+a+SOAP+Client http://docs.atlassian.com/software/jira/docs/api/rpc-jira-plugin/latest/com/atlassian/jira/rpc/soap/JiraSoapService.html
0 comments:
Post a Comment