COGNOiSe.com - The IBM Cognos Community

IBM Cognos 8 Platform => COGNOS 8 => SDK => Topic started by: nishi on 08 Jan 2009 02:39:29 PM

Title: Extract all the added user information in the portal using SDK
Post by: nishi on 08 Jan 2009 02:39:29 PM
Hi,

Is anyone have a sdk java code to extract the users added to the cognos.

Thanks
Title: Re: Extract all the added user information in the portal using SDK
Post by: jue on 09 Jan 2009 09:10:49 AM
Are you wanting to create a list of all the users contained in user groups? If so, you can do this simply by firing some SQL off against the Content Store. No SDK required.
Title: Re: Extract all the added user information in the portal using SDK
Post by: nishi on 09 Jan 2009 04:42:58 PM
Yes, We want to know the list of users added to the groups in cognos namespace but not querying the content store database.

I am searching for some sample sdk java code.

Thanks.
Title: Re: Extract all the added user information in the portal using SDK
Post by: jue on 13 Jan 2009 11:04:25 AM
The SDK code will query the content store at some point though. We did have a piece of SDK code a couple of years back. In our environment (35,000 users) it took about 3 mins to bring back all the information. The SQL query we wrote takes 5 seconds.

I don't have a copy of the SDK code that did this anymore unfortunately.
Title: Re: Extract all the added user information in the portal using SDK
Post by: nishi on 16 Jan 2009 11:05:53 AM
Thanks for your reply. I am looking for some sample code.
Title: Re: Extract all the added user information in the portal using SDK
Post by: xiska on 23 Mar 2009 07:05:39 PM
Hi

Try things like that:

get the namespace seachrpath out of the properties - may be written wrong.

Accounts Cognos Namespace default camID = /directory/CamID(":")//account
Accounts Namespace default camID = /directory/CamID("default")//account
Groups camID = /directory/CamID("default")//group
Roles camID = /directory/CamID("default")//role

PropEnum props[] = new PropEnum[] {PropEnum.searchPath, PropEnum.defaultName};
    Sort sOpt[] = new Sort[]{};
    QueryOptions qOpt = new QueryOptions();
    SearchPathMultipleObject spMulti = new SearchPathMultipleObject(camID);
   try
      {
         // retrieve the user account object from content store
         BaseClass account[] = cmService.query(spMulti, props, sOpt, qOpt);
         if (account.length == 0){
      for ( int i = 0,
...

Remember: There is no major difference query a folder or a namespace. The only difference is the Path and you can alway find them in the properties.