2

I've a 3-tier application (client, server, dbms) and I'm looking for an Permission- /roleframework. I know a Role- / Permissionframework in Java EE with GlassFish. The framework that I'm looking for, should approach.

With the permissions I want to verify that a user in a specific role can use a business case.

Do you know something like this?

Arjan Tijms
  • 37,782
  • 12
  • 108
  • 140
bitsmuggler
  • 1,689
  • 2
  • 17
  • 30

1 Answers1

1

In .NET you would typically use the built in Membership provider. You can use it out of the box, or implement a set of interfaces that will give you all the functionality you need. You can find all the info about it here :

http://msdn.microsoft.com/en-us/library/aa479021.aspx

This question on SO has more details on why you might want to use it:

Is *not* using the asp.net membership provider a bad idea?

Rhino.Security would be an existing alternative. I have never used it myself though, so I cannot recommend it. You will find a lot of info on this blog : http://ayende.com/blog/tags/rhino-security

Community
  • 1
  • 1
Stéphane
  • 11,755
  • 7
  • 49
  • 63