cancel
Showing results for 
Search instead for 
Did you mean: 

Fetch the list of nodes whose permission is updated/modified

manoj27
Champ in-the-making
Champ in-the-making
<!–break–>
Hi,

I am working on java based application for crawling content from Alfresco (both 4.x and 5.x). I am able to figure out the nodes whose metadata is updated after some specified time, using SELECT query on following CMIS 1.1 query,
/alfresco/api/-default-/public/cmis/versions/1.1/atom/query?q={query}


But, the above API provides only the nodes having metadata modified.

To get the nodes, whose ACLs or permissions are modified, I am trying to use Audit services with CMISChangeLog application. But, this is returning 0 (zero) entries even if 'verbose' is set to true.

Is there any other api, that can help me here.

Thanks,
Manoj
1 REPLY 1

manoj27
Champ in-the-making
Champ in-the-making
I had enabled the <B>CMISChangeLog</B> application on Alfresco server using following:
<blockcode>
audit.enabled=true
audit.alfresco-access.enabled=true
audit.cmischangelog.enabled=true
</blockcode>

After removing the line
audit.alfresco-access.enabled=true
and restarting the Alfresco, the CMISChangeLog query worked fine and returned the expected results.

-Manoj