The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
2answers
30 views

Asp.net MVC4: Authorize on both controller and action

If I have Authorize attribute on both controller and action, which one will take the effect? Both?
0
votes
1answer
45 views

MVC configure Authorize Roles value and strongly typed role

In order to authorize a controller for a particular role, following attribute is required on the controller class: [Authorize(Roles = "SampleRole")] This requires role name to be hard-coded on the ...
1
vote
1answer
117 views

ASP.NET MVC - How can I get the Namespace In Custom Authorization Filter?

I have to implement the Custom Authorization Filter. (for check Is Authorized, need Namespace, Controller Name, And Action Name) I don't manage to Get the Namespace. Here's my code: ...
0
votes
1answer
51 views

Authorize Attribute extentions new keyword

I would like to extend the filter of keywords for Authorize Attribute without out creating an custom authorization object. I know the build in keyword are Roles,Users. I would like to add a new ...
0
votes
1answer
99 views

Need help understanding ASP .Net MVC user authentication/authorization

I have been going around in circles trying to properly understand this. I have an ASP .Net MVC project I am working on and need to implement user logins that authorize and authenticate against en ...
0
votes
1answer
41 views

Summarize Authorize Attributes

I have an ASP.net MVC website providing various admin functions. It's internal and uses Windows authentication to manage different roles access to various controllers and actions. In order to ...
2
votes
3answers
519 views

MVC4 Authorize Attribute overide; how to get passed in Roles?

I'm trying to create my own [Authorize] Attribute so I can use my own authorize logic to have hierarchal roles. If someone does [Authorize(Roles = "Admin")] on a controller or action How do I get ...
3
votes
2answers
170 views

Bypass or turn off [Authorize(Roles=“”)] during development?

Building an MVC3 application, and TPTB want us to use their custom authorization provider. However, during development this auth provider is kind of a pain, since it will either give an error til you ...
1
vote
2answers
283 views

How to modify Authorize attribute to allow a group of User Roles in MVC 3

In my MVC3 wep app, I have extended the Authorize attribute like below public class MyAuthorizeAttribute : AuthorizeAttribute { protected override bool AuthorizeCore(HttpContextBase httpContext) ...
0
votes
1answer
187 views

Passing data from AuthorizeCore to HandleUnauthorizedRequest then Action in ASP.NET MVC4

I have a custom implementation of AuthorizeAttribute that handle unauthorized user access were I override the following methods: AuthorizeCore, then HandleUnauthorizedRequest. The logic for checking ...
2
votes
4answers
2k views

In ASP.NET MVC4, how to redirect to {controller}/{id}?

I have the following route configuration in a ASP.NET MVC4 project: routes.MapRoute( name: "HttpError", url: "{controller}/{id}", defaults: new { controller = "Error", action ...
0
votes
0answers
369 views

Access action method parameters from custom Authorize attribute in MVC 3

I am writing an MVC 3 app where users will be able to log in and manage their data. I want to prevent users from viewing or tampering with other user's data. My first instinct was to just verify ...
1
vote
1answer
293 views

Ninject Authorization vs Action Filter binding order

I have 2 filters I'm trying to apply using Ninject's BindFilter<> syntax, and they are being applied with their dependency injection successfully. The problem lies in the fact that the one sorts ...
2
votes
3answers
1k views

Custom AuthorizeAttribute with custom authentication

I am using ASP.NET MVC 4 Web application as a front-end for some WCF services. All the user log in/log out and session control is done on the back-end. MVC app should only store a single cookie with ...
4
votes
2answers
457 views

Role-based Authorization with Model List

I've 3 models [User, Role, and UserRole] Use {ID [PK], Name, Email, Password, .....} Role {ID [PK], Name, Description, .......} UserRole {UserID [FK], RoleID [FK]} Consider, the Role-based ...
2
votes
2answers
246 views

How to deny access only one area in .net MVC?

I'm trying to deny only one area using .Net MVC 4 and I'm not getting results. What happens is when I put <authentication mode="Forms" /> in web.config everything is denied: all the site and is ...
3
votes
1answer
1k views

MVC 4 Authorize attribute not recognizing forms auth from ASP.Net 3.5

I am creating a new MVC 4 app for a client that I had previously created ASP.Net 3.5 (VS 2008) apps for. I created a gateway app to launch several other ASP.Net 3.5 web apps, with the gateway app ...
0
votes
1answer
347 views

Get post data in AuthorizeAttribute?

Hi, I am about to validate some data before letting the user in to the action and if the data do not validate, then I need to redirect to another action. The question is how I get the post data that ...
1
vote
1answer
431 views

Global Custom Authorize Attribute with Excluded Atrribute

I have two attributes : public class AnonymousAllowedAttribute : AuthorizeAttribute { } public class ActionAuthorizeAttribute : AuthorizeAttribute { public override void ...
0
votes
1answer
500 views

Admin role global filter with Role and AllowAnonymous overrides?

I've set up a global filter to require login for all methods based on Rick Anderson's article. Now I want to go one step further and require all actions are authorized to "Admin" role only, unless ...
2
votes
1answer
594 views

Show Node in MvcSiteMapProvider if its action is marked with [Authorize(Roles = “Administrator”)]

Currently, I have a Controller with an Index() action method that needs authorization: public partial class CustomerController : BaseDocumentStoreController { [Authorize(Roles = ...
-1
votes
2answers
162 views

AuthorizeAttribute Reuse

I'm securing my MVC controllers with AuthorizeAttributes. Is there a way to instantiate those classes on its own? At the moment I have an AuthorizedAdmin and a IsAdmin class which does the same. So ...
4
votes
1answer
3k views

Get ActionName, ControllerName and AreaName and pass it in ActionFilter Attribute

I use a custom AuthorizationFilter like the followings: public class ActionAuthorizeAttribute : AuthorizeAttribute { protected override bool AuthorizeCore(System.Web.HttpContextBase httpContext) { ...
0
votes
2answers
273 views

Use different authorize attributes for controllers to access the same logic from different environments

I have an ASP.NET MVC website, where most of my controllers are decorated with Authorize attributes, to enforce forms authentication. I'm about to make this website available on Facebook via a ...
1
vote
5answers
1k views

How to authorize a set of controllers without placing the annotation on each one?

I have sets of controllers which are each used for each authorization type. For example, a class A authorization will have a set of controllers each which require class A authorization. Is there a way ...
2
votes
2answers
1k views

mvc 3 session and authorizeAttribute

My site is open to all but i have a controller with some method that only the manager with the user and password can enter. I'm saving the bool IsManager in a session. I would like to use the ...
1
vote
1answer
163 views

Put data from database into Session in MVC

I currently working on an extension of the filter [Authorize], so that I can retrieve the permissions from the database. Everything works, but it is sure a performance issue. Every time I send a query ...
1
vote
0answers
214 views

ASP.Net MVC: Lock JSON Requests to within a site by HTTP_REFERER

Suppose I have an ASP.Net MVC site. How do I lock controller methods (perhaps with an Attribute on the Action) so that HTTP_REFERER must point to my site? To expand: I have many JSON actions on my ...
1
vote
1answer
1k views

AuthorizeAttribute v Application_AuthenticateRequest

We want to authorize users and if they are authorized we want to add their roles and permissions to the user and add that to the IPrinciple We have 2 ways of doing this one is to do it in global.asax ...
1
vote
1answer
183 views

Does this method do what it says it will do (prevent the page from being cached)?

private void PreventPageFromBeingCached(AuthorizationContext filterContext) { var cachePolicy = filterContext.HttpContext.Response.Cache; cachePolicy.SetProxyMaxAge(new TimeSpan(0)); } The ...
6
votes
3answers
2k views

Why can't I combine [Authorize] and [OutputCache] attributes when using Azure cache (.NET MVC3 app)?

Using Windows Azure's Microsoft.Web.DistributedCache.DistributedCacheOutputCacheProvider as the outputCache provider for an MVC3 app. Here is the relevant action method: ...
5
votes
2answers
756 views

ASP.Net MVC 3: Inverse Authorize Attribute

I have a simple ASP.Net MVC 3 application that has some controller and a good few actions. Now, as this is a user based application, most of the controller actions require the user to be ...
6
votes
1answer
2k views

Action filter execution order

I have created two classes that implements AuthorizeAttribute. One is used globally, and I set it on the Global.asax.cs: filters.Add(new FirstAuthorizeAttribute() { Order = 0 }); The other is ...
2
votes
1answer
427 views

AuthorizeAttribute MVC - restrict access to user created content

So I read about how implementing your own authorization routines are bad! http://www.nashcoding.com/2011/02/05/using-the-forms-authentication-membership-provider-on-appharbor/ And I got scared, ...
1
vote
1answer
4k views

ASP.NET MVC Global or BaseController ActionFilter to Execute Before OnAuthorization

In my application (ASP.NET MVC 3) I have a BaseController class that all my Controllers inherit and in that BaseController I have overridden the OnActionExecuting method to check to ensure a Session ...
0
votes
1answer
625 views

Mock presence of Authorize attribute

I was wondering how you could mock that a controller is decorated with the [Authorize] attribute in MVC3? I am using a custom membership provider. I would like to test that a controller been decorated ...
2
votes
1answer
447 views

MVC3 Authorize: Is It Bad Form to Call an Authorized Action from another Action?

Is it required to use RedirectToAction when calling a controller action from another action? I currently just call them directly because I do not want them to return, and thus I bypass the Authorize ...
1
vote
2answers
2k views

Authorize attribute not working

I wanted to add a simple login. So I thought the best way would be to add the credentials in a database and then query that and if the username and password mathches you get logged in. This is ...
3
votes
1answer
1k views

OutputCache and Authorize filters in MVC3

I am reading a book about MVC2, and in the OutputCache section it states: Warning In the earlier section “How Authorization Filters Interact with Output Caching,” I explained that [Authorize] ...
4
votes
1answer
716 views

How can I pass data from an AuthorizeAttribute to the Controller?

I have created a custom AuthorizeAttribute which verifies some OAuth credentials that are sent inside the HTTP header. I am using some of these credentials to identify who is making the request. Once ...
0
votes
0answers
185 views

Somehow [Authorize] is ignored by application

I have an ASP.NET MVC2 application deployed on 2 servers: preproduction and production. All controllers in this application are marked with [Authorize] attribute: namespace TMS.Controllers { ...
2
votes
2answers
511 views

Displaying a useful message when redirected to FormsAuthentication logon page with ASP.NET MVC

I want to make a custom AuthorizeAttribute that includes a Message property. The problem is, my FormsAuthentication redirects to the specified loginUrl. How can that View get access to the attribute's ...
4
votes
3answers
4k views

asp.net MVC 3 applying AuthorizeAttribute to areas

I'm currently writing an Admin MVC 3 site, and each user only has access to certain parts of the site. The areas of my site are the same as the user Roles, so what I would like to do is the put the ...
4
votes
4answers
1k views

Question about [Authorize] Attribute for Administrators

If i have an Area in my ASP.NET MVC 3 (Razor) Web application, where all controllers derive from a base controller that looks like this: [Authorize(Roles="Administrator")] public class ...
25
votes
5answers
11k views

Handling session timeout in ajax calls

I'm making an ajax call using jquery to an asp.net mvc controller action: [AcceptVerbs(HttpVerbs.Post)] public ActionResult GetWeek(string startDay) { var daysOfWeek = ...
1
vote
2answers
1k views

How to output the default 404 page within HandleUnauthorizedRequest

I have written a custom AuthorizeAttribute having an override of HandleUnauthorizedRequest. This override conditionally sets the response status code to 404 with: var response = ...
3
votes
2answers
803 views

Is there a way to make AuthorizeAttribute respond with status code 403 Forbidden rather than a redirect?

If the user is not logged in and they request an action marked [Authorize], then the response is a redirect to the Account/LogOn action (status code 302 Found). Is there a way to make the response be ...
13
votes
2answers
3k views

A controller action which returns a partial view inserts the logon page when authorization fails

I have a view that loads a partial view from a controller action using jQuery. The controller action is decorated with the Authorize attribute and if the user has timed out when that action is called ...
15
votes
4answers
2k views

ASP.NET MVC Beta Authorize attribute sends me to wrong action

Today I started playing with the MVC 3 Beta. Started with an application from default MVC 3 template, added a new action in the Home controller as follows(with a view for it) [Authorize] public ...
3
votes
1answer
568 views

Authorize filters vs Action Filters

i m using .NET mvc2 for my application. i want some custom authorization on my actions. i have googled a bit and there seems to be two options available. Impelement logic in onActionExecuting in ...

1 2