Hi Yuriy,
First of all, thank you for your answer. I've been able to fix PCT errors by updating LDAP gluu schema.
I've also performed all the steps you suggested regarding RPT introspection.
My uma2-configuration json indicates that the URL is https://<hostname>/oxauth/restv1/rpt/status. Using the one showed in the example throws an error.
- cURL request:
```
curl -X POST \
https://<hostname>/oxauth/restv1/rpt/status \
-H 'authorization: Bearer 77809a40-2def-475a-9791-5ad5c5421a35' \
-H 'cache-control: no-cache' \
-d '{
"token":"51731e9e-cac6-4952-99df-a309a53a699a_6687.EE1F.A803.F4FA.E6D4.0005.DD2B.B8AB"
}'
> POST /oxauth/restv1/rpt/status HTTP/1.1
> User-Agent: curl/7.29.0
> Host: ------
> Accept: */*
> authorization: Bearer 3f8857df-5c40-4577-ac69-025df8eb88bb
> cache-control: no-cache
> content-type: application/json
> Content-Length: 90
>
* upload completely sent off: 90 out of 90 bytes
< HTTP/1.1 200 OK
< Date: Mon, 11 Sep 2017 06:23:43 GMT
< Server: Jetty(9.3.15.v20161220)
< X-Xss-Protection: 1; mode=block
< X-Content-Type-Options: nosniff
< Strict-Transport-Security: max-age=31536000; includeSubDomains
< Cache-Control: no-transform, no-store
< Content-Type: application/json
< Connection: close
< Transfer-Encoding: chunked
<
* Closing connection 0
{"active":false}
```
- LDIF:
```
2d6d03cd-b345-4ea6-93a3-7b5b8014e5cd, uma_rpt, @!BE05.3C1E.6575.A7AC!0001!57A7.6968!0008!B5A4.F074.C2A2.99E0, clients, @!BE05.3C1E.6575.A7AC!0001!57A7.6968, gluu
dn: uniqueIdentifier=2d6d03cd-b345-4ea6-93a3-7b5b8014e5cd,ou=uma_rpt,inum=@!BE05.3C1E.6575.A7AC!0001!57A7.6968!0008!B5A4.F074.C2A2.99E0,ou=clients,o=@!BE05.3C1E.6575.A7AC!0001!57A7.6968,o=gluu
oxAuthClientId: @!BE05.3C1E.6575.A7AC!0001!57A7.6968!0008!B5A4.F074.C2A2.99E0
oxAuthTokenCode: 51731e9e-cac6-4952-99df-a309a53a699a_6687.EE1F.A803.F4FA.E6D4.0005.DD2B.B8AB
oxAuthCreation: 20170911064614.407Z
oxAuthExpiration: 20170911065114.407Z
uniqueIdentifier: 2d6d03cd-b345-4ea6-93a3-7b5b8014e5cd
objectClass: top
objectClass: oxAuthUmaRPT
oxUmaPermission: oxTicket=0869b790-a3e5-48fb-946e-6ed66e67bb87,ou=uma_permission,inum=@!BE05.3C1E.6575.A7AC!0001!57A7.6968!0008!B5A4.F074.C2A2.99E0,ou=clients,o=@!BE05.3C1E.6575.A7AC!0001!57A7.6968,o=gluu
```
And finally, oxauth.log only shows:
```
2017-09-11 08:46:31,685 ERROR [qtp1020391880-16] [org.xdi.oxauth.uma.service.UmaRptService] (UmaRptService.java:104) - Failed to find RPT by code: null
```
Thanks,
Hector