COGNOiSe.com - The IBM Cognos Community

IBM Cognos 8 Platform => COGNOS 8 => SDK => Topic started by: gauravd20 on 01 Aug 2008 01:19:07 AM

Title: Create Groups and Roles under Java CAP Namespace
Post by: gauravd20 on 01 Aug 2008 01:19:07 AM
Hi, I have implemented a Java CAP for cognos authentication by creating a namespace "Sample1". After authentication, i am looking on adding groups and roles in my custom namespace.
Have anyone tried the sample code provided under sdk samples??
It doesn't looks to be working for me.....
Please let me know how to create/add groups to custom namespace.
Title: Re: Create Groups and Roles under Java CAP Namespace
Post by: platipuss on 26 Aug 2008 01:33:32 PM
Did you have any luck finding the answer to this question?
Title: Re: Create Groups and Roles under Java CAP Namespace
Post by: lindero on 11 Sep 2008 07:25:05 AM
IMHO, you only can create groups and roles within the Cognos namespace via SDK. Imagine it wouldn't be an CAP but an LDAP. You are not able to create groups and roles within this authentication provider through the SDK as well.

What kind of authentication provider do you use for the CAP connection?
Title: Re: Create Groups and Roles under Java CAP Namespace
Post by: gauravd20 on 15 Sep 2008 04:32:26 AM
I am using Custom Java Provider as my namespace type.
Title: Re: Create Groups and Roles under Java CAP Namespace
Post by: lindero on 24 Sep 2008 05:00:09 AM
sorry, which kind of source do you want to connect? Is it a database like MSSQL Server or a Teradata, or a flat file?
Title: Re: Create Groups and Roles under Java CAP Namespace
Post by: jramos on 11 Feb 2010 03:38:55 PM
This question hasn't been answered yet, but hopefully somebody out there knows what to do.

I am also trying to attach roles to the account within the CAP visa but do not see the roles once I am logged in Cognos.

Do I have to specify the "Cognos" namespace instead of the CAP namespace when doing this?

Please help me understand how to achieve this.

Thank you.
Title: Re: Create Groups and Roles under Java CAP Namespace
Post by: platipuss on 08 Mar 2010 10:52:43 AM
You provide groups and roles for the CAP view the
public IQueryResult search(IVisa theVisa, IQuery theQuery) function in your implemented NamespaceAuthenticationProvider2 class. Depending on how you satisfy the query your return a QueryResult.
So

QueryResult result = new QueryResult();
result.addObject(new Account('searchpath'));
result.addObject(new Role('searchpath'));
result.addObject(new Group('searchpath'));
return result;

So you can store groups in roles in tables and create them on the fly for each request. Just parse the cognos query into your own sql query and create the groups and roles on the fly to fill in result object.

the structure of our tables is

Entity_Table
entity_id*
name
is_user
is_group
is_role

Entity_mapping_table
child_id*
parent_id*

The mapping table just provide a way to have en infinite parent child tree. I will not post the code to do this but should be enough to get you started.

- Plat