0
votes
3answers
35 views
Authorization and Windsor
I'm trying to implement my custom authorize attribute like:
public class MyCustomAuth : AuthorizeAttribute
{
private readonly IUserService _userService;
public MyCustomA …
0
votes
1answer
47 views
MVC 1.0 & the Authorize Attribute Not Working?
I'm writing an application with MVC and I'm at the point where I need to start applying the authorization checks but I can't get them to work under any conditions. I'm using Window …
1
vote
1answer
164 views
Authorization and ASP.NET MVC Caching
I'm confused on ASP.NET MVC caching and authorization and in dire need of some clarification.
My self-made authorization attribute inherits from AuthorizeAttribute. It's overridde …
1
vote
1answer
38 views
asp.net authorization using url
This question has problably been asked before, but it seems like I can't phrase my search correctly enough to find the answer.
Normally when you sign up to get access to a forum o …
0
votes
1answer
187 views
ASP.NET MVC custom authorization
I am building a web application using ASP.NET MVC that has two very distinct types of users. I'll contrive an example and say that one type is content producers (publishers) and an …
3
votes
2answers
120 views
What is the best mechanism to implement granular security (i.e. authorization) in an ASP.NET MVC application?
Suppose a high-speed developer was tasked with building a banking application which would be accessed by many different people. Each person would want to access his or her own acco …
0
votes
1answer
98 views
Asp MVC [Authorize] to return a Post instead of a Get
I would like to use [Authorize(Roles="Admin")] tags on my controller methods.
If a user is not an admin I would like to return this user to my login screen.
The default behaviour …
4
votes
3answers
204 views
Is the [Authorize] attribute for ASP.NET MVC controllers only for Membership Providers?
Does the [Authorize] attribute used with ASP.NET MVC controllers only function with sites that have implemented a MembershipProvider?
2
votes
3answers
251 views
More control on ASP.Net MVC’s Authorize; to keep AJAX requests AJAXy
I have some action methods behind an Authorize like:
[AcceptVerbs(HttpVerbs.Post), Authorize]
public ActionResult Create(int siteId, Comment comment) {
The problem I have is tha …
1
vote
2answers
186 views
Is ASP.Net (MVC) redirecting to the log in form when I generate a HttpUnauthorizedResult?
I'm actually using ASP.Net MVC, but I think this applicable to ASP.Net as well.
Investigating how authorization works I've reached the conclusion that ASP.Net MVC generates an Htt …
0
votes
1answer
73 views
Authorize attribute does not preserve post data
In order to preserve post data after utilizing the [Authorize] attribute on a controller method, which then redirects the user to a login page, which then upon successful authentic …
8
votes
3answers
717 views
Override Authorize Attribute in ASP.NET MVC
I have an MVC controller base class on which I applied the Authorize attribute since I want almost all of the controllers (and their actions along) to be authorized.
However I ne …
