Querying multiple fields via RTC REST API
I've got a script which was working fine until recently. Its running against v5.2 RTC server but there may have been a patches that have since broken it. The query we are trying to run is of the format
curl -sk -b /tmp/rtcsync/rtccookies.txt 'https://myjazzserver:9443/ccm/rpt/repository/scm?size=600&fields=scm/component/(name|itemId)'
and
curl -sk -b /tmp/rtcsync/rtccookies.txt 'https://myjazzserver:9443/ccm/rpt/repository/scm?size=600&fields=scm/workspace[stream=true]/(itemId|name)'
Currently the queries above both return a 400 error where previously it returned an XML document containing the itemIds and names for the respective queries. I am able to query just name OR the itemId but when I try and return both it fails.
Any idea what could have caused this query to suddenly stop working on our Jazz server?