Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

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 ...
8
votes
3answers
12k views

HttpContext.Current.User.Identity.Name is always string.Empty

Hi I use a custom MembershipProvider. I want to know the current username during an application scenario, but when I try accessing HttpContext.Current.User.Identity.Name it always returns ...
3
votes
2answers
73 views

Strongly Typed @User.Identity

I customize IIdentity and IPrincipal adding a few more properties in IIdentity. You can obtain a strongly typed instance @User.Identity for my custom class? Without having to make conversions in ...
3
votes
3answers
3k views

Set Identity of Thread

In C#, how do I set the Identity of a Thread? For example, if I have Thread MyThread, which is already started, can I change MyThread's IIdentity ? Or is this unpossible?
2
votes
0answers
123 views

Implementing IIdentity, what is AuthenticationType?

I have a custom class (with properties like UserID, UserName, UserEmail, etc) implementing IIdentity. I login through custom logic, which reads from sql. What should IIdentity's AuthenticationType ...
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
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 ...
1
vote
2answers
188 views

Custom User.Identity to add property

I customize RoleProvider and MembershipProvider classes I would like to add one more property in my @User.Identity, as do so? example: @User.Identity.About => .About not exist yet I thought I'd ...
1
vote
2answers
1k views

Moq custom IIdentity

I created a custom RoleProvider (standard webforms, no mvc) and I would like to test it. The provider itself integrates with a custom implementation of IIdentity (with some added properties). I have ...
0
votes
3answers
86 views

Unity equivalent for Ninject's Bind.ToMethod of IPrincipal,IIdentity

I'm trying to replicate the following Ninject syntax in Unity, but not having any luck: Bind<IIdentity>().ToMethod(c => HttpContext.Current.User.Identity); I'm thinking it ought to look ...
0
votes
0answers
508 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
2answers
612 views

Custom IIdentity and passing data from an attribute to a controller

Here's my scenario: I've successfully created a custom IIdentity that I pass to a GenericPrincipal. When I access that IIdentity in my controller I have to cast the IIdentity in order to use the ...
0
votes
1answer
402 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 ...