Hi Christophe,
OpenCMIS does not limit the number of query results.
On the Alfresco side you might want to check the repository properties
system.acl.maxPermissionCheckTimeMillis (the maximum time spent pruning
results) and system.acl.maxPermissionChecks (the maximum number of results to
perform permission checks against).
- Florian
On 03/10/2011 17:50, PROME Christophe wrote:
> Hi,
>
> I am using Open CMIS to query a repository.
>
> One of my query shall return a lot of results (500+).
>
> However, the results I get are limited to 100 items.
>
> Is it an Alfresco or an Open Cmis limitation ?
> Can I change this value using a property ?
>
> Here is my code to query the Alfresco repository :
>
> ItemIterable<QueryResult> results = session.query(myQuery,false);
>
> for (QueryResult result : results) {
> // Do something with the results...
> }
>
>
> I am using Open CMIS 0.5.0 and Alfresco community 3.4d
>
> Thanks,
>
> Christophe
>