jira SOAP and XMLRPC

北慕城南 提交于 2019-12-06 08:06:31

the Atlassian site has samples right on it.

using SOAP client to interact with Jira:

http://confluence.atlassian.com/display/JIRA/Creating+a+SOAP+Client

and using xml-rpc to interact with Jira:

http://confluence.atlassian.com/display/JIRA/Creating+a+XML-RPC+Client

also check out the documentation they have for the API:

http://confluence.atlassian.com/display/JIRA/JIRA+XML-RPC+Overview

Please take a look at this: http://blog.sophilabs.com/2011/08/overcoming-jira-3-13-x-remote-access-limitations-part-ii/

This is a good alternative to put up with JIRA RPC limitations.

Daria Trainor

Atlassian recommends REST API to communicate with Jira remotely. It is supported in Jira 5.0 and later. They still support SOAP API, but are not going to implement any new functionality there.

To use SOAP API in Python you can use any SOAP client library - What's the best SOAP client library for Python, and where is the documentation for it?

Here are examples in Python that use REST web services - http://developer.yahoo.com/python/python-rest.html

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!