How to find all Records(Issues) In Clear Quest Server using Querys? Help!
I have using Java with Rest API.
1. we are able to find all records in Clear Quest server with using projects in query, can you see below query for more details.
String queryString = "http://localhost:80/cqweb/oslc/repo/8.0.0/db/SAMPL/record/?oslc_cm.query=Project in [\"SAMPL00000001\"]&rcm.type=ALMRequest";
Above query returning all issue with single project and more projects, this is fine.
2. I want to find all records in CQ without projects .
we are using below query to find the all issue without projects but it's received status is 403 (return a 403 FORBIDDEN code for unsupported databases).
String queryString = "http://localhost:80/cqweb/oslc/repo/8.0.0/db/SAMPL/record/?oslc_cm.query=rcm.type=ALMRequest";
where Iam missing? is it there any query mistake.
Any one help me out.
thanks.