How to get exact version of RQM using REST API?
Hi,
I am trying to get the version of RQM using the following URL in REST
https://localhost:9443/qm/application-about
The resultant XML has the node named jfs:version to find the version of the server. But this approach provides only the major version as 4.0 and not its subversion like if 4.0.2, 4.0.3 etc.
Can anybody help me in getting these sub versions of the server through REST?
I am trying to get the version of RQM using the following URL in REST
https://localhost:9443/qm/application-about
The resultant XML has the node named jfs:version to find the version of the server. But this approach provides only the major version as 4.0 and not its subversion like if 4.0.2, 4.0.3 etc.
Can anybody help me in getting these sub versions of the server through REST?
One answer
It works for me.
<?xml version="1.0" encoding="UTF-8"?>
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:jfs="http://jazz.net/xmlns/prod/jazz/jfs/1.0/"
xmlns:dcterms="http://purl.org/dc/terms/"
xmlns:oslc="http://open-services.net/ns/core#">
<oslc:Publisher rdf:about="https://clm406:9443/qm/application-about">
<dcterms:title>Quality Management</dcterms:title>
<dcterms:description>Delivers capabilities for test management, including test planning, creation, and execution, as well as workflow control, tracking, and end-to-end traceability.</dcterms:description>
<dcterms:identifier>http://jazz.net/application/qm</dcterms:identifier>
<jfs:version>4.0.6</jfs:version>
<oslc:icon rdf:resource="https://clm406:9443/qm/web/com.ibm.rqm.planning.web/ui/internal/page/templates/images/banner/RQM_16.png"/>
<jfs:instanceName>/qm</jfs:instanceName>
</oslc:Publisher >
</rdf:RDF>