Search code examples
soapweb-servicesjirajql

Webservice Jira gives: Error: No such operation 'getIssuesFromJqlSearch' from Jira 4.01


When I use the Webservice of Jira, I need to use the method getIssuesFromJqlSearch to describe a certain (JQL) Query. But it returns me "No such operation 'getIssuesFromJqlSearch'". Is this method in Jira 4.01 not implemented yet?

BTW: I need a method to get all Issues from one specific project, without creating filters first. This was my first way to find a workaround, because there is no function getIssuesFromProject.

If there is no way to fix the problem with the JQL method, I try to take RSS XML View with the URL jql statement like SearchRequest.xml?jqlQuery=project+%3D+Testproject&tempMax=1000. But this is not my favorite.


Solution

  • I just used soapUI to call getIssuesFromJqlSearch on jira.atlassian.com, and it worked fine. Do you have the same version installed? Anyway, you can use soapUI to analyze WSDL and test all the methods: you'll then isolate if the problem is with your JIRA or with the code that calls the method.

    By the way, in JIRA Client we do use RSS XML to download most of the information, and it's not that bad. Let me know if you have any questions with this method.