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.

learn more… | top users | synonyms

0
votes
0answers
35 views

.NET PrincipalPermission: Exception on mscorlib.dll

I am trying to implement security in my application. I made a project in visual studio to test this out. This works. This is the project to give you an idea of how I am using it ...
2
votes
1answer
86 views

Set User property for an ApiController in Unit Test

My unit tests for an ApiController uses some helpers methods to instantiate the controller: public static ResourcesController SetupResourcesController(HttpRequestMessage request, ...
0
votes
1answer
234 views

WebApi ActionFilterAttribute, HttpActionContext access user name (IPrincipal) [duplicate]

I need to access the currently logged in user in my action filter. The identity is set by a DelegatingHandler further up the chain of execution. I can access the current IPrincipal using ...
0
votes
2answers
268 views

How to set custom principal in asp.net

I am new to web application. I have created a custom principle and trying to set it in CurrentDomain. This code works perfectly in WPF application. But here it is throwing Policy Exception "Default ...
0
votes
1answer
97 views

I need code revision if I am authenticating user right - Custom Principal

In my login method I used this code to login user: FormsAuthentication.SetAuthCookie(model.UserName, model.RememberMe); Since I wanted to avoid database call always when I need UserId and some ...
1
vote
1answer
77 views

Do I really need to call Dispose() on every Principal?

I'm doing some Active Directory work with .NET's System.DirectoryServices.AccountManagement namespace. I noticed that Principal implements IDisposable, which causes sort of a headache since everything ...
0
votes
0answers
67 views

ASP .NET Custom Principal Overwritten

I had some code that sets the HttpContext.Current.User with a custom IPrincipal in an Application.AuthenticateRequest handler. This works fine and I've verified it's set correctly in the ...
0
votes
1answer
121 views

Invalid cast when getting custom IPrinciple from HttpContext

After researching FormsAuthentication for a few days, I decided to store a serialized object in the FormsAuth cookie's UserData property and use a custom IPrinciple object for the ...
2
votes
1answer
297 views

Store extra user session object with FormsAuthenticationTicket - cookie size too large

I am trying to setup a .NET MVC 3 project to store a custom user session object (which can then be later accessed from a Custom Principal object on other subsequent actions) I have followed the steps ...
1
vote
2answers
305 views

Are User in WebApiController and HttpContext.Current.User different?

After referring this post, I wrote an attribute for Basic Http Authentication to be used in the web api. In the attribute class, if the credentials provided match, then I am setting the ...
1
vote
1answer
102 views

WindowsPrincipal.IsInRole takes into account groups inside groups?

If I have an principal that pertains to a group that pertains to a group that pertains to a group that is added to the built it role "Administrator" will a call to ...
1
vote
1answer
83 views

Custom IPrincipal expiration issue

I followed advice from this question on how to implement custom IPrincipal (I need it to store userId in it in order to reduce calls to database to get just userId). Now if I login to site and leave ...
1
vote
1answer
190 views

Selective IPrincipal Injection via StructureMap with SignalR

StructureMap is configured to inject HttpContext.Current.User when an IPrincipal is requested for any ASP.NET MVC web request, like so: For<IPrincipal>().Use(x => HttpContext.Current.User); ...
0
votes
0answers
50 views

Custom Principal on View not working

I setup a custom principal same as a previous project which worked well, for this the following is called in the Global.asax file HttpCookie authCookie = ...
0
votes
2answers
384 views

Extending Azure ACS Claims for MVC Sessions

I am developing an MVC 4 Application to be hosted in Azure and want to use their ACS service for authentication. Once the user is authenticated I will use the resulting claim details to correlate to ...
0
votes
0answers
87 views

How do I update the original Principal from a WCF service

In WCF, I can set up a communication to be from an trusted source, which is authenticated e.g. WindowsIdentity.GetCurrent()) - that is all fine and works no problem. Once the custom roles (via a ...
0
votes
1answer
367 views

MVC's ActionExecutingContext HttpContext.User.Identity.IsAuthenticated Returns False When Signing in on Multiple Browser Tabs

During a custom ActionFilterAttribute's OnActionExecuting method, we ensure that the user is still logged in before performing some actions. We do this by doing something similar to this pseudo code: ...
2
votes
5answers
648 views

Obtaining the current Principal outside of the Web tier

I have the following ntier app: MVC > Services > Repository > Domain. I am using Forms authentication. Is it safe to use Thread.CurrentPrincipal outside of my MVC layer to get the currently logged in ...
2
votes
1answer
1k views

How to create a CustomPrincipal globally (with and without AuthorizeAttribute)

I have a custom Principal/Identity for my ASP.NET MVC4 web app. I have also created a AuthorizeAttribute to instantiate my custom principal, assigning it to httpContext.User in controllers where I ...
6
votes
3answers
284 views

linqpad and custom IPrincipal serializable

I'm using LINQPad to test code (what a great product, I must say) but now I'm encountering an exception when I try to set the Thread.CurrentPrincipal to a custom IPrincipal that is marked with the ...
1
vote
2answers
401 views

Thread.CurrentPrincipal cannot be set to Forms Authentication principal

I have a WCF service, which is hosted inside of an ASP.NET MVC application (as described in http://msdn.microsoft.com/en-us/library/aa702682.aspx). Part of the MVC actions and WCF service operations ...
1
vote
0answers
146 views

PostAuthenticateRequest fires in dev, but not on live

I'm having a problem with the PostAuthenticateRequest event on a ASP.NET MVC3 site. I'm using it to set a custom IPrincipal, and it works fine on my development machine, but not on the live server. ...
0
votes
2answers
660 views

RoleProvider dosn't work with custom IIdentity and IPrincipal on server

I'm using a custom IIdentity and IPrincipal in my ASP.NET MVC application via EF 4.3 as expalined here (and follow accepted answer's solution). Also, I have a custom RoleProvider. In local (using IIS ...
0
votes
2answers
441 views

Role-based Security without Forms Authentication in ASP .NET

I would like to take advantage of: Page.User.IsInRole("CustomRole"); Page.User.Identity.IsAuthenticated when working inside Page methods, as well as authorization section in ...
4
votes
1answer
4k views

using custom IPrincipal and IIdentity in MVC3

Please read the question complete before vote it down. Thanks. I create my own IPrincipal and IIdentity implementation as shown below: [ComVisible(true)] [Serializable] public sealed class ...
0
votes
1answer
467 views

Problems implementing IPrincipal

Trying to implement IPrincipal (ASP.NET MVC 3) and having problems: my custom IPrincipal: interface IDealsPrincipal: IPrincipal { int UserId { get; set; } string Firstname { ...
3
votes
1answer
605 views

Can you wrap the RolePrincipal in a custom IPrincipal object?

I am using custom Membership and Role providers inside the ASP.NET framework with Forms Authentication. These are working great. The Role provider is using a cookie to persist the roles, saving a ...
1
vote
1answer
610 views

WCF CustomRoleProvider and Principle Permissions

EDIT: I think that the issue may be related to the issue below as I'm also using SSL PrincipalPermission.Demand() failing once WCF Service was moved to SSL I'm working on a secure set of web ...
2
votes
2answers
767 views

Authenticate against ActiveDirectory

I did a little Googling and I came accross this promising code System.DirectoryServices.AccountManagement.PrincipalContext pc = new ...
3
votes
2answers
4k 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 ...
4
votes
1answer
755 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 => ...
0
votes
0answers
197 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 ...
10
votes
1answer
4k 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 ...
6
votes
6answers
2k 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 ...
0
votes
1answer
171 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
1k 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 ...
1
vote
1answer
2k 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 ...
1
vote
1answer
622 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); ...
3
votes
1answer
1k 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 ...
1
vote
2answers
2k 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 ...
2
votes
1answer
785 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 ...
3
votes
2answers
653 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 ...
0
votes
1answer
334 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
606 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 ...
3
votes
3answers
1k 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
1k 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 = ...
1
vote
1answer
50 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 ...
0
votes
2answers
739 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 ...
1
vote
1answer
1k 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 ...
3
votes
4answers
2k 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 ...

1 2