Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'd like my application, written in C#, to perform authentications, just like I used to do in Java through JAAS. Which objects should I use? Which classes? Thank you for your answers.

share|improve this question
3  
Is this winforms, webforms, wpf...? – George Duckett Jul 26 '11 at 13:38

2 Answers

The .NET Framework uses role-based security with principal, identity, and permission classes to handle security. You can choose one of the built-in security modules within the .NET Framework, rather than building one yourself. When you convert Java Authentication and Authorization Service (JAAS) applications to the .NET Framework, you must take into account the differences between the two approaches to security.

All JAAS configuration files must be renamed as JAAS.config to be processed by Java Language Conversion Assistant. These are converted to App.config files, which can be used by support-class methods to obtain authentication modules and register them with the authentication manager.

The LoginContext class is converted to the static System.Security.AuthenticationModule class, which has different behavior.

The LoginModule class is converted to the IAuthenticationModule interface. In the Java language, the LoginContext object registers a LoginModule object, which uses callback handlers to request input from the user and login module to authenticate users. In the .NET Framework, authentication modules are registered with the authentication manager, which loops through registered authentication modules to return authorization information.

Source

share|improve this answer
2  
+1, better answer than mine, as it is tailored to OP's existing knowledge. – George Duckett Jul 26 '11 at 13:41

I'm assuming asp.net.

The MSDN page detailing asp.net authentication provides a good overview. It can be as simple as editing the web.config file in some cases.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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