Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a custom handler and in some cases, I want to indicate to the user agent that they are not authorized (Http Error Code 401)

        if (!IsAuthorized(context))
        {
            context.Response.StatusCode = 401;
            context.Response.End();
            return;
        }

When I access my handler, I am actually getting a 302 and a redirect to the forms authentication page. Is there a way to stop this from happening?

share|improve this question

2 Answers

up vote 3 down vote accepted

Your scenario sounds like an "Access denied" instead of "unauthorized". Could you use 403 which is the HTTP status code for "Access denied"?

http://en.wikipedia.org/wiki/List_of_HTTP_status_codes

share|improve this answer
I think your actually right that in my case a 403 is more appropiate...still would like to figure out why the framework is doing what its doing. – JoshBerke Apr 5 '11 at 18:23
Yep after more digging around your right, – JoshBerke Apr 5 '11 at 18:27
2  
@Josh, here is an explanation of why you are seeing a 302 - asp.net/security/tutorials/user-based-authorization-cs – Naraen Apr 6 '11 at 17:47

Sounds like you have authentication turned on for the page. If this is the case, then your app is calling Authentication before the hand off to your custom handler. That's why you see the login page.

The isAuthorized in your handler is populated before your handler receives the call. You'll want to use a module and hook into the Authentication Life Cycle Event. See the Asp.Net Life Cycle

share|improve this answer
The request is authenticated and authorized as far as IIS is concerned. The code is executing in the ExecuteHandler step of the life cycle. – JoshBerke Apr 5 '11 at 18:18

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.