Tagged Questions
The System.Security.Principal.IPrincipal interface defines the basic functionality of a security object. It is most commonly used by applications written for the Microsoft.NET framework.
68
votes
3answers
18k views
ASP.NET MVC - Set custom IIdentity or IPrincipal
I need to do something fairly simple: in my ASP.NET MVC application, I want to set a custom IIdentity / IPrincipal. Whichever is easier / more suitable. I want to extend the default so that I can call ...
12
votes
4answers
5k views
Implementing a Custom Identity and IPrincipal in MVC
I have a basic MVC 2 beta app where I am trying to implement a custom Identity and Principal classes.
I have created my classes that implement the IIdentity and IPrincipal interfaces, instantiated ...
10
votes
2answers
581 views
Asp.net Mvc: Ninject - IPrincipal
I was wondering how I could bind the IPrincipal to HttpContext.Current.User in Asp.net Mvc with Ninject.
Friendly greetings,
Pickels
Edit:
Not sure if it matters but I use my own CustomPrincipal ...
7
votes
2answers
4k views
ASP.NET MVC custom IPrincipal injection
I'm working on an application using ASP.NET MVC 1.0 and I'm trying to inject a custom IPrincipal object in to the HttpContext.Current.User object.
With a traditional WebForms application I've used ...
5
votes
1answer
513 views
Custom IPrincipal with Forms Authentication in ASP.NET MVC
This should be simple, but I simply cannot figure it out after all my googling. Here's what I want. I have a custom Users table (no roles at the moment) that I'd like to authorize against. For this ...
4
votes
1answer
378 views
Asp.NET Principal WebORB HttpHandler
I have a Flex-WebORB-Asp.NET application. When logging in, there's an AuthenticationHandler which implements a WebORB interface:
IPrincipal CheckCredentials(string username, string password, Request ...
3
votes
5answers
309 views
How can I make accessing my custom IPrincipal easier in ASP.NET MVC?
I've written a custom principal object which contains a few additional fields (email and userid in addition to the username).
In order to access these properties I have to cast the Context.User ...
3
votes
1answer
459 views
Custom Principal reverting to GenericPrincipal on new requests
I'm trying to implement a custom principal and custom identity in a .NET MVC website. I've created a custom principal class which inherits from IPrincipal and a custom identity which inherits from ...
3
votes
3answers
594 views
File and Directory Security with IPrincipal
I need to gain access to the files and directories that the current IPrincipal has access to via the Directory.GetDirectories() and Directory.GetFiles() methods, without listing the other files. The ...
3
votes
2answers
2k views
Mock IIdentity and IPrincipal
I just wanna ask what would be better approach to supply these objects in my unit tests.
In my unit test I am testing CSLA object. CSLA object is internally using one property and one method of ...
2
votes
1answer
132 views
MVC3 + Ninject: What is the proper way to inject the User IPrincipal?
I have seen the following two example for injecting the User IPrincipal:
Method 1:
kernel.Bind<IPrincipal>()
.ToMethod(context => ...
2
votes
1answer
534 views
MVC2 :: How do I *USE* a Custom IIdentity Class?
I am trying to store a whole truckload of information about a user from a webservice. As this is information about the currently authenticated user, I thought it would make sense to store that ...
2
votes
2answers
319 views
ASP.NET MVC: How can IPrincipal be null?
I'm running a website on IIS6 / Server 2003 which uses Integrated Windows Authentication on a local intranet. I can browse to the site but get intermittent "Object null" errors when calling the ...
2
votes
2answers
380 views
Code is ignoring PrincipalPermission attribute?
I have a Delete method on all my business objects that has the PrincipalPermission attribute on it.
Example:
[PrincipalPermission(SecurityAction.Demand, Role = "Vendor Manager")]
public ...
2
votes
1answer
540 views
IPrincipal.IsInRole() only works when I truncate the role names - why?
I have an application that relies heavily on authorization of users. Within it, I am using IPrincipal.IsInRole() to check whether users are in the correct groups:
IPrincipal principal = ...
2
votes
4answers
832 views
asp.net extending IPrincipal
I would like to extend IPrincipal in asp.net to allow me to get the usertype that I will define. I would like to make it possible to do this in a controller
string type = User.UserType
then in my ...
2
votes
2answers
566 views
What's the difference between HttpContext.Current.User and Thread.CurrentPrincipal in asp.net?
Well, I think the title is clear enough.
2
votes
4answers
2k views
SerializationException on 'CustomIdentity' when user is denied in ASP.NET
I try to implement ASP.NET Authentication and Authorization on top of our existing database.
We have a website calling a webservice to fetch its data. To use the webservice, i need to provide the ...
2
votes
1answer
1k views
Store user id in Principal or Identity? ASP.Net/OpenID
I have an ASP.Net MVC web application using forms authentication. I am using OpenID for authentication.
At the moment the moment I'm storing the openID url inside the Name of the standard ...
2
votes
3answers
1k views
WindowsPrincipal.IsInRole() not returning the expected result
So here's my current code:
List<string> rowGroups = GetFileGroups((int)row.Cells["document_security_type"].Value);
bool found = false;
System.Security.Principal.WindowsPrincipal p = new ...
1
vote
1answer
189 views
What is the best way to cache a custom IPrincipal for a asp.net mvc website?
I have implemented a custom IPrincipal that I set in
protected void Application_PostAuthenticateRequest(Object sender, EventArgs args)
by doing
Context.User = GetCustomPrincipal(User.Identity);
...
1
vote
1answer
44 views
Block assemblies from changing IPrinicpal
My application loads a lot of different plugin assemblies. Each plugin can add their own services into the IoC container and can also use all services provided by the main application.
I'm moving ...
1
vote
1answer
697 views
Custom implementation of IPrincipal throws System.SystemException: The trust relationship
We have a ASP.NET site that partially depends on forms authentication for login credentials, however the implementation of IPrincipal is completely custom.
But, when running the site on a particular ...
1
vote
3answers
138 views
ASP.net web services
I am using a web service which sets the Thread.CurrentPrincipal object while logging in and soon later when another webmethod of the same web service accesses Thread.CurrentPrincipal, its ...
0
votes
2answers
309 views
Is this Custom Principal in Base Controller ASP.NET MVC 3 terribly inefficient?
Despite the fact that I've been on here for a while, this is my first ever question on SO, so please be gentle with me.
I'm using ASP.NET MVC 3 and I want to create a custom Principal so I can store ...
0
votes
0answers
61 views
ASP.NET Custom Pricipal and Cookies (tickets)
If i create a custom principal with five custom properties (example, phoneNumber), does the principal data get trasmitted inside of the cookie or does the data stay in the server?
void ...
0
votes
1answer
34 views
Current User is LocalSystem Check?
It is easy enough to determine if the user running my C# .NET 4.0 console app is a member of the local Administrators group. I am also trying to determine if it is running under LocalSystem. What is ...
0
votes
1answer
271 views
User.Identity.IsAuthenticated returns false sometimes
Im using asp.net 4.0 and Form auth.
To check if a user is authenticated or not, i use User.Identity.IsAuthenticated.
Most of time it works perfect but i dont know how, sometimes it returns false even ...
0
votes
0answers
500 views
mvc implementing iprincipal and iidentity with use of custom membership and role provider
I'm stuck with the implementation of a custom iprincpal and iidentity object. I spend a day now for searching how to implement these right and extend it with more informations.
I want to extend the ...
0
votes
0answers
170 views
Silverlight authentication extending RolePrincipal
I'm using forms authentication with a silverlight app. On user login this returns a RolePrincipal. I am looking to replace this with my own custom principal which is basically an extension of ...
0
votes
2answers
691 views
MVC Authorization Role and IPrincipal - how does it work?
I've managed to successfully implement a custom MembershipProvider for my MVC2 application. I have my own User table as well as Role table.
My problem right now is that when I put in the ...
0
votes
1answer
155 views
Approach for replacing forms authentication in .NET application
My question is about an approach, and I am looking for tips or links to help me develop a solution. I have an .NET 4.0 web forms application that works with Forms authentication using the aspnetdb ...
0
votes
2answers
305 views
Impersonating a user in ASP.NET MVC for testing
Is there an easy way to substitute current User object (the one inside controller) with IPrincipal having properties of another user? I'm thinking about environment that users Windows authentication ...
0
votes
2answers
461 views
Not seeing roles on Principal in ASP.NET MVC 2 Application
I am writing an ASP.NET MVC 2 application and don't want to use ASP.NET Membership. I do want to use the Authorize attribute on the Controllers. What I have done so far is ...
Web.config
...
0
votes
2answers
505 views
How does IPrincipal gets its roles?
I need to get know how SiteMapProvider.IsAccessibleToUser() works.
Built-in XmlSiteMapProvider calls HttpContext.User.IsInRole() which uses System.Security.Principal.GenericPrincipal in case of forms ...
0
votes
1answer
43 views
Keep an object for the time the connection is running in ASP.NET
I'm developing a web service with ASP.NET, is not an .asmx or WCF, it's a custom one, so I'm working with the Http classes (context, request, response, etc..). Session is disabled. I'm working with my ...
0
votes
1answer
400 views
How do you override the WCF AuthenticationService IsLoggedIn() method?
I have three current thoughts on how to do this:
re-implement AuthenticationService, which uses lots of internal constructors and internal helpers,
implement custom IIdentity and IPrincipal types ...