Hi,
I'm trying the query() method in DiscoveryService. I used the code as below:
discoveryS = ServiceFactory.getDiscoveryService();
DiscoveryService.cmisObjectListType objectList = discoveryS.query(repositoryId, "select * from cmis:folder", true, false, wsstudy.DiscoveryService.enumIncludeRelationships.both, "*", "0", "0", new wsstudy.DiscoveryService.cmisExtensionType());
DiscoveryService.cmisObjectType[] objects = objectList.objects;
I got no result return which did supprise me. The value of objectList.objects is null. Does anybody know about this method? Did I write a wrong query statement?
BTW, all the cmis WS method need a cmisExtensionType param. Does anybody know about its usage?
And, is there any docmentum for the API description?
Thanks in advance,
Rex