Tagged Questions
2
votes
1answer
71 views
Send BASIC auth by default, rather than wait for HTTP 401
I have a web service that requires a BASIC authentication header to be present in the request, or the service will return an HTTP 401 (unauthorized). This works - when the challenge comes back, the ...
0
votes
0answers
107 views
IIS Windows Authentication to only Login page. Strange behaviour?
I am trying to set my ASP.NET application not prompt username/password to new users.All of the users are intranet users.
As first option, i decided to use windows authentication for whole ...
0
votes
0answers
71 views
customErrors 401 Capturing
I have been searching both Stack Overflow and various forums but I am having trouble understanding the process of capturing HTTP errors within ASP.net and IIS.
At this time I have configured by ...
0
votes
1answer
170 views
Unauthorized (401) when calling one localhost website from another
I have two websites set up on my local system running IIS 5.1 (on localhost). I am calling one website from another. I am working with ASP.NET, C# 2.0.
public static String executeWebRequest(string ...
1
vote
1answer
133 views
ASP.net webservice 401 error for some services only
I have created a webservice in a ASP.net. All the access to the respective website is done through HTTPS. The service which I have added is only one among many others.
I am trying to access just for ...
0
votes
0answers
421 views
Using HTTPWebRequest to get SSRS report: Error 401
Hello fellow developers,
I currently have a task to make a Bulk Report Exporter. My thinking is that I have to create a loop for each set of parameters, and pull the report with an HTTPWebRequest and ...
0
votes
2answers
4k views
“The remote server returned an error: (401) Unauthorized” error when trying to upload a file
I found a lot of question about (401) Unauthorized error, but none of them explained to me how to diagnose the issue.
I created a new MVC ASP.net app to learn how to upload a file to a sharepoint ...
0
votes
2answers
250 views
ASP.NET WebMethod that works both with and without a Session
I am making a ASP.NET web page in C#. I'm finding that if the web page is left alone for a short period of time, I start getting 401 Unauthorized Errors whenever the page attempts to call a WebMethod. ...
0
votes
1answer
544 views
ItextSharp 401 error (Image issue)
I'm having some trouble using iTextSharp in MVC3.
I am creating a header/footer with some images and it works fine locally but when i upload it to my server it returns a 401:
The remote server ...
4
votes
2answers
656 views
Intermittent 401 and 302 Errors on Static Files
I'm developing a website for a client of ours and have been having a nagging issue for weeks. The problem is intermittent and might happen twice in a day or once in 2 weeks.
When it happens, the ...
0
votes
1answer
721 views
Forcing a custom HTTP 401 unauthorized page in ASP.NET
I've written a web application for internal use at work (not for the wider internet) that makes use of Windows authentication - ASP.NET interrogating Windows for the current set of credentials. An ...
1
vote
0answers
213 views
401 Unauthorized when custom IHttpHandler tries to read from virtual directory
I have a custom IHttpHandler, specified in web.config as follows:
<httpHandlers>
<add verb="*" path="*.html" validate="true" type="PipingRedirectHandler" />
<add verb="*" ...
0
votes
2answers
231 views
windows authentication error (only with a lot of data)
I have an ASP.net website running under IIS6. In one .aspx page the user has to enter data which is then stored into a database. The amount of data can vary. The project uses Windows Authentication.
...
0
votes
1answer
399 views
Include custom content in ASP.NET Windows Authentication 401 response
We have an internal system where users can authenticate using Windows authentication but we want to include some custom content in the 401 repsonse that takes the user to a custom username/password ...
0
votes
0answers
257 views
401 Authorization error on subdomain ASP.NET admin site
I have a dynamic data admin site which uses Forms authentication. I have deployed it to a subdomain on godaddy but keep receiving a 401 unauthorized error. My config is setup to use forms and the IIS ...
3
votes
1answer
182 views
Sharing ASP.NET Authentication between two applications
I have two web applications ASP.NET running on the same web server IIS 7.5/.NET 4.0.
The first app makes async calls through jquery to the second app, which acts as web service backend (connected to a ...
3
votes
1answer
607 views
asp.net 4.0 Custom 401.2 not Authorized custom page
I successfully implemented role based authorization in ASP.NET. When a person does not have the needed role he gets to see an error page for 401.2 not authorized.
What I would like to accomplish now ...
0
votes
2answers
333 views
Ajax Jquery Call throws 401 Exception
recently, while implementing Ajax Jquery on one the my site, throw strange 401 UnAuthorised error, the strange thing in it is i am using forms authentication and the user is also logged in, but still ...
0
votes
1answer
277 views
Long-running Ajax call returns http status 401
I have an asp.net page that loads, then makes am ajax call that can take some time. Sometimes the call times out. This is expected in some cases where data is less than perfect. I have been noticing ...
0
votes
2answers
2k views
401 Unauthorized Webmethod only on the server
I am using jQuery to get some data from an API.
The stream reader authenticates the calls to the api and gets the stream like this:
public string StreamManagerUrlHandler(string requestUrl)
{
...
5
votes
1answer
3k views
Setting authentication header for WebBrowser control - ASP.NET
I'm using WebBrowser control in my asp.net application to generate screenshots of web pages. I was able to generate images till I changed the application pool account. I've given the new application ...
1
vote
0answers
449 views
WebBrowser.Navigate - 401 Unauthorized - ASP.Net
I'm using WebBrowser control in my asp.net application by creating a STA thread and using it in the thread. Everything was working fine till I changed my administrator account for my web application.
...
5
votes
5answers
1k views
Asp.net Images are giving 401 unauthorized error randomly
I am using Asp.net, IIS 6 and cdn for serving images.
I am having a problem with loading the images in my website. images are under a virtual folder. Everytime I hit refresh of the browser, some of ...
0
votes
1answer
503 views
ASP.NET Application not authenticating using Windows Authentication
I have a Win2003 Server running a number of different ASP.NET websites, all using mixed mode authentication.
One of the applications is causing me issues from one laptop, I get a pile of 401's when I ...
9
votes
6answers
8k views
Turning off ASP.Net WebForms authentication for one sub-directory
I have a large enterprise application containing both WebForms and MVC pages. It has existing authentication and authorisation settings that I don't want to change.
The WebForms authentication is ...
3
votes
1answer
2k views
ASP.NET IIS Authentication issue for some users
I have an ASP.NET repository site running on IIS6.0 and I have an issue that I can't reproduce, but three of the users have this problem every time (~20 other users run just fine). I'm pretty sure it ...
1
vote
1answer
192 views
Infinite loop with HTTP 401 status
I wrote an ASP.NET page that requires HTTP Basic authorization, which I put in the Page_Load function:
void Page_Load(object sender, EventArgs e)
{
string auth = Request.Headers["Authorization"]; ...
1
vote
2answers
534 views
How can I narrow down the point of failure in this ASP.NET ASMX to Exchange 2010 Managed API setup?
Since working with Exchange Web Services 2010 is a bit ridiculous, especially from anything other than .NET, I've been tasked with wrapping some functionality up in a SOAP web service that acts as a ...
0
votes
1answer
482 views
Integrated Windows Authentication per-app if the user cancels the request can I redirect them to another page?
EDIT ~ Updated the title and the question body: This is the edit.
I want this behavior per-app on IIS6/7. I asked it initially before we migrated to IIS7, so any answer can be altered between the two ...
5
votes
3answers
8k views
Getting “401 Unauthorized” error consistently with jquery call to webmethod
I have been struggling to get my jquery call to a webmethod to work. I am being bounced by the server with a "401 Unauthorized" response. I must have an incorrect setting in the web.config or ...
2
votes
1answer
180 views
Having SQL injection like text in a texbox results in 401.1 on Submit
This is a follow up to my post back in August: http://stackoverflow.com/questions/1225042/asks-for-ad-credentials-connection-interrupted-on-postback
The issue popped up again for a new record and I ...
5
votes
2answers
3k views
customerrors for 401.2 in ASP.NET
I successfully implemented role based authorization in ASP.NET. When a person does not have the needed role he gets to see an error page for 401.2 not authorized.
What I would like to accomplish now ...
0
votes
2answers
712 views
Can't access webpage using Internet explorer [closed]
I have a problem accessing an intranet website with IE8. I can access the site through Firefox or any other browser, except IE. IE will prompt for a username and password but never accepts the ...
6
votes
2answers
13k views
SSRS Report Viewer + ASP.NET Credentials 401 Exception
I have a report saved on a SQL2005 reporting server, and I want to return a rendered PDF of this report. I've figured this out when working with a local *.rdlc file (and I've blogged about it), but ...
1
vote
2answers
5k views
Why my httpwebrequest post to myhandler.ashx is rejected with status code 401
I've already written an HTTPHandler that gets POSTed from a ColdFusion page and it works successfully; now, I am trying to write a web application in ASP.NET so I can post a form to the .ashx handler ...
3
votes
2answers
2k views
How do I get an already (basic) authenticated context to call a web service behind the same authentication?
I have a site behind basic authentication (IIS6).
Part of this site calls a web service that is also part of the site and thus behind basic authentication as well.
However, when this happens the ...
0
votes
3answers
266 views
IIS 6.0 Is Stubbornly Remembering Authentication Settings [closed]
I have an .asmx in a folder in my application and I keep getting a 401 trying to access it.
I have double and triple checked the setting including the directory security settings. It allows ...
