RQM How can I get the dynamic Section ID of one Test Case
Rafael Rodriguez Montes (230●13●130●258)
| asked Mar 10 '15, 5:58 p.m.
edited Mar 18 '15, 9:05 p.m. by Geoffrey Clemm (30.1k●3●30●35) Hello, I'm working with OSLC and I would like to get or know the dynamic Section ID of one specific Test Case, is there any way to see it thro the web app or eclipse??
Thank You |
One answer
Rafeal,
Using a REST call on the Test Case will return the dynamic Section ID in XML; it will look something like this
href="https://HOST:9443/qm/service/com.ibm.rqm.integration.service.IIntegrationService/resources/LPA1+%28Quality+Management%29/template/testcase/com.ibm.rqm.planning.templates.testcase.default"/><dynamicSection_1426075858826 xmlns="http://jazz.net/xmlns/alm/qm/v0.1/" extensionDisplayName="Custom Section One"><div xmlns="http://www.w3.org/1999/xhtml">My content for my custom section</div></dynamicSection_1426075858826></ns2:testcase>
You can use any HTTP client (The RQM URL utility, Poster..etc) to obtain the XML. Be sure to include the Accept header with a value of "application/xml "
Comments Thank You! Ara, but I was looking for something where I can see it directly from the WebApp, not from the Webservice:
Donald Nong
commented May 10 '16, 3:44 a.m.
I was brought here by another post. The Section ID that Rafael referred here is the DOM object Id (which will be used by JavaScript/Dojo and the like), not the same ID in XML - the part starting with "dynamicSsection" should be the same though.
|
Your answer
Dashboards and work items are no longer publicly available, so some links may be invalid. We now provide similar information through other means. Learn more here.
Comments
Reminder: Please tag your questions appropriately. For example, this is clearly about RQM, and not about RTC.
Geoffrey,