COGNOiSe.com - The IBM Cognos Community

Legacy Business Intelligence => COGNOS ReportNet => SDK => Topic started by: akoymakoy on 29 Oct 2009 11:19:41 PM

Title: add/delete users problem on getBaseObjects method
Post by: akoymakoy on 29 Oct 2009 11:19:41 PM
i get this error:
getBaseObjects: CM-REQ-4342 An error occured with the client

CODE:

BaseClass baseObjects[] = new BaseClass[] {};

try {
// Note we want members of groups, so include members in properties.
       PropEnum[] properties = new PropEnum[] { PropEnum.defaultName, PropEnum.searchPath, PropEnum.members };
baseObjects = cmService.query(new SearchPathMultipleObject(searchPath), properties, new Sort[] {}, new QueryOptions());
} catch (RemoteException e) {
throw new ArtException("getBaseObjects: " + e.getMessage() + " " + e.getCause());
}
return (baseObjects);


Title: Re: add/delete users problem on getBaseObjects method
Post by: kolonell on 30 Oct 2009 03:27:12 AM
I think I had the same once. Remove the members property. That should do it. As far as I recall the error only occurs when account objects are part of the result set. try limiting the resultset to only groups.