Max Result Limit 100...
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎07-05-2013 12:49 PM
Hi,
yet another mistery…
I change the MaxResults in the SearchPlugIn and in the searchtemplates to "200" , but workdesk gives me only 100.
I checked the web-client-config.xml of my Alfresco and it says:
<javascript><!– Limit search results. -1 for unlimited. –>
<search-max-results>500</search-max-results></javascript>
any hint?
yet another mistery…
I change the MaxResults in the SearchPlugIn and in the searchtemplates to "200" , but workdesk gives me only 100.
I checked the web-client-config.xml of my Alfresco and it says:
<javascript><!– Limit search results. -1 for unlimited. –>
<search-max-results>500</search-max-results></javascript>
any hint?
Labels:
- Labels:
-
Archive
7 REPLIES 7
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎07-05-2013 02:01 PM
Are you using Workdesk Community 4.1.0.0? There was a problem with the max results parameter in the CMIS adapter which have been solved with the recntly released version 4.1.1.0_Sprint_2 of Workdesk Community:
http://sourceforge.net/projects/alfresco/files/Alfresco%20Workdesk%20Community%204.1.1/
Several other issues have been fixed with this version and the new OpenCMIS adapter has been improved a lot. You should be able to update to this version easily by backing up your previous deployment, deploying the latest version and reintroducing your old configuration files/folders.
http://sourceforge.net/projects/alfresco/files/Alfresco%20Workdesk%20Community%204.1.1/
Several other issues have been fixed with this version and the new OpenCMIS adapter has been improved a lot. You should be able to update to this version easily by backing up your previous deployment, deploying the latest version and reintroducing your old configuration files/folders.
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎07-05-2013 04:34 PM
thanks! i'll give it a try!

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎07-09-2013 08:54 AM
I upgraded to Sprint2….but no luck with maxresult…
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎07-09-2013 09:46 AM
Hi,
7joeblack8 is right, the max result size is not provided to query-call
and it looks like the OpenCMIS default value is 100.
So it's a bug in Workdesk.
7joeblack8 is right, the max result size is not provided to query-call
and it looks like the OpenCMIS default value is 100.
So it's a bug in Workdesk.
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎07-09-2013 10:24 AM
Hi 7joeblack8,
An internal ticket was created and I already got feedback from Enginnering that this issue will be solved with the upcoming 4.1.1.0 final version.
Regards,
Dennis
An internal ticket was created and I already got feedback from Enginnering that this issue will be solved with the upcoming 4.1.1.0 final version.
Regards,
Dennis
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎07-09-2013 10:52 AM
if i can help:
the maxsize given from client reaches the adpopen lib in the doSearch method well, then at the CSQLProcessor is lost (getMaxResult null)…
So i decide to touch the follo class com.wewebu.ow.server.ecmimpl.opencmis.OwCMISRepositorySession.java:
<javascript> searchResult = searchResult.skipTo(skipCount.intValue()).getPage();</javascript>
And at the end "getPage" method has no value…is enough to write inside an int and it works like a charm.
the maxsize given from client reaches the adpopen lib in the doSearch method well, then at the CSQLProcessor is lost (getMaxResult null)…
So i decide to touch the follo class com.wewebu.ow.server.ecmimpl.opencmis.OwCMISRepositorySession.java:
<javascript> searchResult = searchResult.skipTo(skipCount.intValue()).getPage();</javascript>
And at the end "getPage" method has no value…is enough to write inside an int and it works like a charm.
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎07-11-2013 04:56 AM
I love open source 🙂
