When I log in as normal user and call:
Folder rootFolder = (Folder) cmisSession.getObject(parentFolderId);
rootFolder.getPath(); //THIS LINE GIVE ME THE ERROR
on a folder, I get this error:
org.apache.chemistry.opencmis.commons.exceptions.CmisRuntimeException: Repository didn't return cmis:path!
rootFolder seems valid and it is not null.
But if instead of using a generic user, I use the admin user, all works fine. No errors.
I suppose that the folder has the right authorization (otherwise I will receive an cmis authorization exception). I created the folder from the admin control panel, and granted authorization to a group which my user belong.
To call getPath() I'm using the library: chemistry-opencmis-client-impl-0.10.0.jar
Edit2 09:58: If I assign to the group the Manager role, the getPath() method works fine. (With the role: consumer, contributor and collaborator it doesn't work as usual).
Edit3 12:19 07/07/2018: Some other configuration:
The directory (I tried to grant to group the manager role for the directory, but it doesn't work):

The user configuration (if in site manager I grant the Manager role to the user it works):

The group configuration from site manager (if I grant the Manager role to the group it works):

What am I missing?
