[closed] How does RTC redirect an OSLC work item URL to the UI editor for the work item?
Jim Amsden (293●4●7)
| asked May 17 '17, 1:11 p.m.
closed Jul 24 '23, 9:24 a.m. by David Honey (1.8k●1●7) When a Jazz application such as Rational DOORS Next Generation has a Requirement that has an implementedBy link to an RTC WorkItem, hovering over the link displays the OSLC resource URI for the work item (in the browser status bar), something like: https://<host>:9443/ccm/resource/itemName/com.ibm.team.workitem.WorkItem/<id>. If you put that URI into Poster and do a GET with the Accept header set to application/rdf+xml, you'll get back and RDF representation of the work item resource.
|
The question has been closed for the following reason: "The question is answered, right answer was accepted" by davidhoney Jul 24 '23, 9:24 a.m.
Accepted answer
If you do a GET on an OSLC work item URL with no accept header, RTC will send an HMTL document that has a meta tag to redirect the browser to the RTC UI for the work item. Ralph Schoon selected this answer as the correct answer
|
One other answer
Try this
<!DOCTYPE html>
<html> <head> <meta http-equiv="refresh" content="0; url=https://<host>:9443/ccm/web/projects/Low%20Flow%20Washer%20%28Change%20Management%29#action=com.ibm.team.workitem.viewWorkItem&id=3"> </head> <body> Redirecting... </body> </html> |