0
votes
0answers
78 views

401 error on sub folder with IIS and Apache reverse proxy

I have an IIS server running an ASP.Net MVC3 application. The site is configured to use Windows authentication over NTLM. Internally the site works perfectly. However, when the site is routed through ...
0
votes
1answer
119 views

Mvc action returns 401 error

This is a strange one. They always are when I get to this point. I have an MVC app. It's a single page app so all routes are ajax calls but I don't think this is relevant. Strangely and all of a ...
0
votes
1answer
122 views

Using Fiddler with MVC - Getting 401s

I have fiddler installed and I'm running an MVC3 app through visual studio. Whenever I try to hit the MVC page with fiddler (localhost:28267) I get a 401. How can I determine what's causing this? ...
2
votes
2answers
2k views

401 Unauthorized: Access is denied due to invalid credentials

I am using IIS Express to deploy MVC4 application. This website runs perfectly on same computer. But in Lan it gives me error 401. <authentication mode="Forms"> <forms loginUrl="~/" ...
1
vote
1answer
234 views

asp mvc - opera return 401 response when sended ajax NTLM request

I have web app (asp.net mvc mvc 4), when i enable ntlm authentification in visual studio and try to send ajax request for example $.ajax({url : 'http://localhost:4135/'}); the returned server response ...
1
vote
3answers
596 views

Sending message with 401: Asp.net Web-api

I am in asp.net web api. In login method i check the user/password against the db and if they do not match, I return 401 status code along with invalid user or password method like var content = new ...
2
votes
3answers
2k views

MVC 3 401 Unauthorized on hosting server

I have an MVC 3 application that is giving me a 401 error when I try and access it from the remote server, but when I run it from my local computer it runs with out any error. The remote server has ...
1
vote
4answers
1k views

Unauthorized result in ajax requests

I have application with many ajax actions (implemented using JQuery.ajax), that returns JSON ot html. Some of them should be accessible only to authorized users, and I decorated them with [Authorize] ...
0
votes
2answers
475 views

displaying custom error page for 401 in Asp.Net MVC

I am working on ASP.net MVC 3 application where I need to display a friendly page to user if he does not have access to the application. I followed lot of articles online but none of them mentions an ...
2
votes
2answers
512 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 ...
2
votes
0answers
718 views

MVC + Ajax call to Controller Loses Authentication

I've seen similar issues in some posts but none of the answers have helped yet. My MVC app has a few AJAX/JSON response methods in one controller, and the calls get to destination but it doesn't work ...
0
votes
3answers
590 views

What is wrong with my Basic Authentication in my Browser?

i'm trying to goto the following url :- http://user1:pass1@localhost:1234/api/users?format=xml nothing to complex. Notice how i've got the username/password in the url? this, i believe, is for ...
2
votes
2answers
3k views

IIS 7.5 MVC 2 problem with 401.3 error [closed]

I have a mixed WebForms/MVC application I'm trying to deploy to our staging environment, which is a fresh install of Server 2008 R2, with IIS 7.5. This application works fine while developing on ...
3
votes
2answers
1k views

401 Returned for every 5th call in an ASP.NET MVC application that returns JSON

This is nuts. I have an ASP.NET MVC application using Windows authentication that, amongst other things, interacts with a number of ExtJs Javascript components by returning JSON data to them. The ...