If you are looking for a simple tool to perform GET operation(s) on IBM Rational Quality Manager (RQM), then you are looking at the right post.
The RQM artifacts are exposed in XML format through the RQM's Reportable REST (REpresentation and State Transfer) API's. If you are in need to perform a quick GET (get XML) of the RQM artifacts without having to worry about the REST syntax and other nitty-gritties, then the "RQM GET" utility is a good option. This utility is built on the basis of the RQMUrlUtility and provides an interactive way to download the artifact XML using the artifact web IDs.
Requirements
RQMGET requires a Java 6 (1.6) or greater.
Running RQM GET Utility
java -jar rqmget.jar [arguments]
Argument Reference
RQMGET -user -password -url [-help]
Command Lines Arguments explained
-user : Login user name
-password : Login Password
-url : Https Url for the RQM application
Example: java -jar rqmget.jar -user clmadmin -password clmadmin -url https://clm.net:9443/qm/
Here is a sample command line trace of events on the RQM GET utility used to download artifact from an RQM server.
C:\>java -jar rqmget.jar -user clmadmin -password clmadmin -url https://clm.net:9443/qm ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ <<<<<----- [ RQM GET Utility ] ---->>>>> ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ RQMGET: Connecting to RQM server at : https://clm.net:9443 RQMGET: Exploring RQM project's at : https://clm.net:9443/qm/ RQMGET: Found 7 project areas.... ......................................... ID | Project Area Alias ......................................... 1 | RQMprojectx1 2 | TestRQM_x2+%28Quality+Management%29 3 | TestQM 4 | TestRQMproject 5 | TestRQM_team1+%28Quality+Management%29 6 | CLMintegrationTest 7 | testCLM+%28Quality+Management%29 ......................................... Enter index of project you would like to explore: 2 Enter index of artifact type to explore in "TestRQM_x2+%28Quality+Management%29" --------------------------------- 1.Test Plan --> [4 Found] 2.Test Suite --> [3 Found] 3.Test Case --> [31 Found] 4.Test Script --> [27 Found] 5.Test Case Execution Record (TCER) --> [100 Found] 6.Test Suite Execution Record (TSER) --> [4 Found] 7.Test Case Result (TCR) --> [100 Found] 8.Test Suite Result (TSR) --> [3 Found] 9.Test Environment (TE) --> [14 Found] 10.Test Phase --> [0 Found] 11.Keyword --> [2 Found] --------------------------------- 4 To download "Test Script" XML --> Enter [1] Enter integet other than 1 to exit 1 Enter the id(s) of "Test Script" you want to download [eg: 1 4 7]? 13 ################################# RQMGET: Test Script #13 from "TestRQM_x2+%28Quality+Management%29" is at: C:\\Test Script__13.xml
################################# RQMGET: Done! RQMGET: Disconnecting from the IBM Rational Quality Manager server.
You can download the RQM GET utility by clicking on RQMGETUtility.zip.