query capability in dng 5.0
![]()
I'm trying to run a simple query through DNG REST api using following query URL:
https://clmserver/rm/views?oslc.query=true&projectURL=https://clmserver/rm/process/project-areas/_e160UKOtEeKOxKDk7re7Vg&oslc.prefix=rm_property=%3Chttps://clmserver/rm/types%3E&oslc.select=*&oslc.where=rm_property:_D7PQIKbaEeKkfY4h6KgkBA=%3Chttps://clmserver/rm/types/_4PwgcabZEeKkfY4h6KgkBA%2320bbacce-7513-4cc8-8ee3-2992f9c3c7e7%3E and I keep getting this error: com.ibm.rdm.fronting.server.exception.ForbiddenException: CRRRS7882W The view contains an invalid attribute type. The attribute type may have been deleted since this view was created. Deleting and recreating this view may fix the problem. (More info found at entry [3d6d806f16a98d71] in the RM application server log Any information on what this means? Thanks, Binoy |
One answer
![]()
Be very careful with the namespace, as it should always end with a slash(/) or hash(#). You missed the slash(/) for the "rm_property" namespace. It should be
oslc.prefix=rm_property=%3Chttps://clmserver/rm/types%2F%3Einstead of oslc.prefix=rm_property=%3Chttps://clmserver/rm/types%3E |