asp.net - Need help understanding ASP .Net MVC user authentication/authorization -
asp.net - Need help understanding ASP .Net MVC user authentication/authorization -
i have been going around in circles trying understand this.
i have asp .net mvc project working on , need implement user logins authorize , authenticate against en external scheme (via webservice).
i can't seem head around membershipprovider
, authorizeattribute
in context require.
which need utilize (i believe both) , need customize provide authentication against external system.
there 1 additional thing require on top of default asp .net user principals in external webservice homecoming session id upon successful login used subsequent requests external services.
would able point me in direction of useful illustration of sort of set up?
membershipprovider used provide users may login system. roleprovider used tell roles user has. used during authentication process. i.e. identifying user. can read membership vs roles
the [authorize]
attribute on other hand used during authorization. i.e. check if user allowed something.
asp.net asp.net-mvc membership-provider authorize-attribute
Comments
Post a Comment