JIRA 4.3 : How do I get more help with SOAP?
This page last changed on Jul 16, 2009 by mdoar.
Cannot resolve external resource into attachment. How do I get more help with SOAP?The best place to get help for SOAP is at Creating a SOAP Client. This page links to the example SOAP Client, which is an excellent source to see how things work. The SOAP client has example usages to most common functionality available in the SOAP interface. Including update issue and progressWorkflow For example: private static void testUpdateIssue(JiraSoapService jiraSoapService, String token, final String issueKey) throws RemoteException { // Update the issue RemoteFieldValue[] actionParams = new RemoteFieldValue[]{ new RemoteFieldValue("summary", new String[] {NEW_SUMMARY}), new RemoteFieldValue(CUSTOM_FIELD_KEY_1, new String[] {CUSTOM_FIELD_VALUE_1}), new RemoteFieldValue(CUSTOM_FIELD_KEY_2, new String[] {CUSTOM_FIELD_VALUE_2})}; jiraSoapService.updateIssue(token, issueKey, actionParams); }
This updates the summary, and custom fields of an issue.
|
![]() |
Document generated by Confluence on Mar 27, 2011 18:55 |