Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

28
votes
3answers
8k 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 need to have a ...
6
votes
4answers
1k 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 account information but ...
5
votes
3answers
165 views

What's the best way to authorize a USB Key

We have an auto update for our software that is installed via USB key (with the auto run). If I wanted to ensure that only authorized USB Keys were used, what's the best way? Our installer is already ...
4
votes
2answers
4k views

How to Extend/Architect the ASP.NET MVC 3 Authorize Attribute to Handle This Scenario

I've been trying to think this answer through and can't find a good solution on how to properly do this. I've read over these articles: ...
4
votes
3answers
690 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?
4
votes
4answers
2k 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 that I'm sending a ...
3
votes
2answers
725 views

mvc 3, jquery ajax & forms authentication

In my MVC3 project, I have a controller with an [Authorize] attribute. I have a form submission without ajax, which redirects the user (as expected) to the login screen, if he/she is not logged in. ...
2
votes
1answer
466 views

How do you define the login page you want unauthorized user to be redirected to

I have decorated my controller with an Authorize attribute, as so: [Authorize(Roles="ExecAdmin")] If I try to go to that controller after logging in as a user who is not ExecAdmin, it does appear ...
2
votes
2answers
1k views

Authorize and then Capture programmatically using Authorize.Net in Magento

Can anyone help me in getting the Authorization and the Capture steps (code) using Authorize.Net? It seems that everyone knows how to use both at the same time, however, there is no explanation as how ...
2
votes
2answers
92 views

What is the best way to connect two users with credit card for payments on the web site?

What is the best way to allow one site user to pay to another user, through web site using credit card? What is best fits for this Paypal Pro or Authorize.net?
2
votes
1answer
54 views

How should i organize authority code?

I have users that fall into the following Not logged in Not Verified Verified Moderator Admin All code that only admin and moderators can access (like banning) is in ModeratorUser which inherits ...
2
votes
3answers
309 views

Authorization and Windsor

I'm trying to implement my custom authorize attribute like: public class MyCustomAuth : AuthorizeAttribute { private readonly IUserService _userService; public MyCustomAuth(IUserService ...
2
votes
1answer
972 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 overridden AuthorizeCore() ...
1
vote
2answers
770 views

Facebook authorize w/permissions request yield “Page Not Found”

Somewhere along the way in the past few weeks, the authorize Facebook call in iOS fails with a "Page Not Found". This happens for any user that has not installed the app or if the app's permissions ...
1
vote
1answer
120 views

MVC3 generate list of controllers/actions with their attributes (esp. action filters)

Is there a reasonable way to generate a complete list of all controllers/actions in a project, along with their various attributes - notably action filters? Our project is relatively small now, but ...
1
vote
2answers
604 views

IE looping infinitely when using Authorize

I'm developing a Facebook app, and i only want to allow access to certain views if the visitor is authorized through Facebook. This should be a pretty simple task, and i thought is was, until i tried ...
1
vote
1answer
422 views

MVC2 AuthorizeAttribute - What's Going On Here?

Background I have an MVC2 project with forms authentication enabled in the project level web.config file: <authentication mode="Forms"> <forms loginUrl="~/Account/LogOn" ...
1
vote
0answers
304 views

Empty response on Unathorized in ASP.NET MVC [closed]

Possible Duplicate: Redirecting unauthorized controller in ASP.NET MVC I have a controller decorated with the [Authorize] attribute. When a action method of this controller is called ...
1
vote
1answer
94 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 on the internet, an ...
1
vote
2answers
555 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 HttpUnauthorizedResult ...
0
votes
2answers
52 views

asp.net mvc3, autorize attribute redirects to wrong login page

I have a page that needs to be secured. I add [Authorize] attribute to that action method. if you are not logged in, you will be redirect to the login page everytime you visit that secure page. it ...
0
votes
0answers
26 views

PCI compliance - which SAQ for ecommerce + POS? [closed]

Our business will be processing payments with 2 methods: With a physical POS terminal that dials in for payments with a modem (separate from the internet). This is used for card not present ...
0
votes
1answer
29 views

The same asp.net mvc page for LDAP authenticated and anonymous users

I have some intranet asp.net mvc3 app ,which is available for both LDAP authenticated and anonymous users.All of them are using IE. One of the views should be available for both of them, depending on ...
0
votes
1answer
147 views

Facebook C# API return 400 when deauthorizing app

Using the Facebook C# API release version from 12/20/2011, I'm calling the facebook client Delete command with "/{facebook id}/permissions" I get a 400 Bad request returned to me. I've tried the ...
0
votes
0answers
73 views

How can I call SCDynamicStoreSetValue() with the correct permissions?

I'm trying to write a little mac app to change my DNS settings depending on location. Using code from http://blog.notampering.com/2011/11/recently-i-searched-high-and-low-to.html I've managed to put a ...
0
votes
0answers
103 views

How to Detect Attribute Values from FacebookAuthorize in Logon Controller?

I am using the Facebook ASP.NET MVC3 SDK to Facebook enable a web application I am building for a friend. I have decided to use [FacebookAuthorize] to apply granular access permissions to my ...
0
votes
1answer
462 views

php-sdk 3.1.1 can't get $facebook->api('/me') for test user and no authorization request displays

When I use the following code, $user_profile = $facebook->api('/me'); will show the info for me, the admin user, but when I switch to a test user the permissions dialog never displays for the test ...
0
votes
1answer
76 views

Adding twitter into PHP form in CMS

Hello I have all sorts of tutorials for authenticating with oAuth, but it seems like everyone else has one piece of the puzzle that I don't. In my CMS I am editing the controller, where info gets ...
0
votes
1answer
64 views

independent authenticated sessions with ASP.NET MVC 2 and Areas

i am developing a little CMS website (frontend area) where users can see news, explore products, etc and in the same site i have a backend area where CMS's content and ERP features are managed, this ...
0
votes
1answer
277 views

Setting up custom Authorize roles for MVC3

Currently my controller looks like this: public class ProductBrandsController : Controller I've read online that I can apply the [Authorize] decorator to each Action, but also to the entire ...
0
votes
2answers
242 views

Authorize all actions under specific controller (example: adminController)

i want to authorize all action under adminController. how can i do that. i have a database with Roles and User. 1. Administrator 2. Member i want only Administrators can access to all action in ...
0
votes
4answers
307 views

asp.net mvc3, how do I authenticate?

I need to build a "my account" application for my friend. I plan to use asp.net MVC 3. I have to use third party API to authenticate users. if this is regular web application, it is easy, I submit ...
0
votes
1answer
46 views

Authorisation exceptions

I've tagged my controller with an authority annotation but would like to exempt one of the methods... can that be done? how? [Authorize(Roles="Admin")] public class ProductController : Controller { ...
0
votes
0answers
146 views

iPhone and gdata youtube login

I using GDataYoutube and now have a problem. Tell me please - how to work login with this framework? I don't find any sample code for this question in objective-c. THK all's!
0
votes
1answer
364 views

Spree Custom Roles Permissions

I am trying to give some custom roles within spree specific permissions. Cant find this answer anywhere role_ability.rb class RoleAbility include CanCan::Ability def initialize(user) user || ...
0
votes
1answer
473 views

Authorize attribute and jquery AJAX in asp.net MVC

I have used jquery ajax function to submit a form. The users have to be logged in else they must redirect to a login page.I have used Authorize() attribute for it. [Authorize] public ActionResult ...
0
votes
1answer
2k views

Spring Security: method is not secured with @PreAuthorize annotation

I would like to secure method in my managed session bean for specific role "ROLE_ADMIN" config(applicationContext-security.xml): <global-method-security pre-post-annotations="enabled" ...
0
votes
2answers
146 views

Authorize.net correct way to implement AIM method in php?

This should be a fairly simple question. Essentially, I believe there's a good chance I'm simply brainfarting. I'm trying to implement a transaction with Authorize.net using the AIM method and I was ...
0
votes
1answer
1k views

CanvasAuthorizer Authorize() not returning true on facebook C# sdk

I downloaded the Facebook C# SDK 4.1.1, and incorporated it on a small ASP.NET 3.5SP1 web project. When I run the application from VS Studio 2008, it allowed me to install my Facebook application. ...
0
votes
1answer
284 views

MVC2 Authorize Roles from SQL

I have a table in my SQL2008 DB for Users and one for Roles and then the UserRoles bridging table. I am at the point where I have to RoleProvider to work and have decorated some of my Actions with ...
0
votes
2answers
588 views

check permission against group not users using Auth->authorize=“actions”

Can any one explain me the working of Auth->authorize = "actions" In my project i am planning tp give this. As this taught me the authorize will call the ...
0
votes
2answers
516 views

How can I assign a value to HttpContext.User in ASP.NET MVC?

I write a controller like below: public class AccountController : Controller { public ActionResult Login(/*---*/) { GenericIdentity identity = new GenericIdentity("userName"); ...
0
votes
1answer
2k 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 another is content ...
0
votes
2answers
340 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 of returning the ...
0
votes
1answer
305 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 authentication redirects the ...
-1
votes
1answer
279 views

Facebook SSO authorize in safari but not facebook app in my iphone

I am following the guide exactly to integrate with Facebook. A weird issue that i run into is that, if I, uninstall the facebook app in iphone OR change the facebook.m implementaion to disable ...