I found it pretty easy to figure out what options should be. Depending on how difficult you are, you can guess what you must go through.
There is one super important one (this is Python with SOAPpy):
self.proxy = WSDL.Proxy( jiraUrl ) self.token = self.proxy.login(self.username, self.password) ... issues = self.proxy.getIssuesFromFilter(self.token, args[0])
After receiving the token from the login () method, you need to pass it as a parameter to all other SOAP calls. Having figured this out, it was pretty simple to figure out what parameters should be (for example, getIssuesFromFilter should take filterId as another parameter)
Tony arkles
source share