vote up 0 vote down star

I am interested if anyone has experience using DotNetNuke authorization in CSLA.

I would like to be able to use my DotNetNuke roles to be able to assign permissions to my CSLA objects and properties. If I just reference the DNN assemblies won't that create an unwanted dependency in my CSLA business objects?

Would it be easier to build CSLA objects that query the DNN database directly to get role membership?

Thanks...

flag

1 Answer

vote up 0 vote down check

You definately do not want to create that dependency with your DNN assembly. Your second suggestion is the way to go.

CSLA uses standard IPrincipal/IIdentity authentication. You can create an object that inherits from the CSLA.Security.BusinessPrincipalBase which uses a CSLA object (e.g. User) that grabs their roles from the DNN database directly. Once you have that authentication integrated, you can place your roles inside your business objects by overriding the AddAuthorizationRules method.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.