Tagged Questions
The httpexception tag has no wiki summary.
18
votes
6answers
18k views
Catching “Maximum request length exceeded”
I'm writing an upload function, and have problems catching "System.Web.HttpException: Maximum request length exceeded" with files larger than the specified max size in httpRuntimein web.config (max ...
18
votes
6answers
9k views
Diagnosing “Request timed out” HttpExceptions
Here on StackOverflow, we're seeing a few "Request timed out" exceptions every day.
The facts:
Request timeout is the default 90 seconds
Occurs only on POSTs
Data posted is text, usually small ...
14
votes
8answers
18k views
Why do I get “Cannot redirect after HTTP headers have been sent” when I call Response.Redirect()?
When I call Response.Redirect(someUrl) I get an HttpException: "Cannot redirect after HTTP headers have been sent".
Why do I get this? And how can I fix this issue?
8
votes
3answers
3k views
BinaryWrite exception “OutputStream is not available when a custom TextWriter is used” in MVC 2 ASP.NET 4
I have a view rendering a stream using the response BinaryWrite method. This all worked fine under ASP.NET 4 using the Beta 2 but throws this exception in the RC release:
"HttpException" , ...
5
votes
4answers
437 views
Stop exception from being thrown for non-existant controller
Ok, so I am stumped on this issue. I have seen a lot of things that are supposed to resolve this issue, but I am not getting a resolution that can fulfill my requirements.
I am using ELMAH to log ...
4
votes
3answers
1k views
Rendering a view to a string in MVC, then redirecting — workarounds?
I can't render a view to a string and then redirect, despite this answer from Feb (after version 1.0, I think) that claims it's possible. I thought I was doing something wrong, and then I read this ...
3
votes
1answer
364 views
Any Progress on Diagnosing “Request timed out” HttpExceptions?
I am having the same issue as described in this post, Diagnosing "Request timed out" HttpExceptions. I've turned on Failed Request Tracing as recommended and am working with someone at MS ...
2
votes
3answers
434 views
How to catch a specific HttpException (#0x80072746) in an IHttpHandler
It appears that this HttpException (0x80072746 - The remote host closed the connection) can be thrown if, for example, the user closes the window whilst we are transmitting a file. Even if we send the ...
2
votes
2answers
296 views
ASP.Net debug directory monitoring exception
When I start my ASP.Net 4.0 web app in debug mode, I'm getting the following exception:
System.Web.HttpException occurred
Message=Invalid file name for file monitoring: ...
2
votes
2answers
891 views
How to diagnose “the operation has timed out” HttpException
I am calling 5 external servers to retrieve XML-based data for each request for a particular webpage on my IIS 6 server. Present volume is between 3-5 incoming requests per second, meaning 15-20 ...
2
votes
3answers
1k views
Render view to string followed by redirect results in exception
So here's the issue: I'm building e-mails to be sent by my application by rendering full view pages to strings and sending them. This works without any problem so long as I'm not redirecting to ...
1
vote
1answer
135 views
httpException 11481611 caused from bad url… how to fix?
In my event logs I am have an warning appear:
Log Name: Application
Source: ASP.NET 4.0.30319.0
Date: 10/24/2011 11:14:18 PM
Event ID: 1309
Task Category: Web ...
1
vote
3answers
924 views
Throwing an HttpException always sends back HTTP 500 error?
I'm trying to throw an HTTP 403 error code back at the client. I've read that HttpException is the cleanest way to accomplish this, but it's not working for me. I throw the exception from within a ...
1
vote
1answer
270 views
Why does IIS return a 500 status code when the server times out?
We're running IIS7 & .net 4.0. When the server times out due to a long running request, the error page is shown, but the error code is just 500 rather than 408 or possibly 503 that I'm expecting. ...
1
vote
3answers
677 views
System.Web.HttpException: Unable to validate data - after publishing site
I have written the following code for login:
Session["IsLogin"] = false;
System.Configuration.Configuration config = ...
1
vote
1answer
4k views
How to troubleshoot “System.Web.HttpException (0x80004005): File does not exist”?
Apologies if this has already been answered on this site, I searched but did not find this exact scenario.
I'm adding log4net to a WCF service. I added a handler in the Application_Error event, and ...
1
vote
1answer
329 views
“Request is not available in this context” on Nested User Control
I have three objects:
A Page which contains
A User Control (A) which contains
Another User Control (B)
The scenario is an event in User Control A gets called, the Request object is still ...
1
vote
1answer
581 views
“Unable to validate data” HttpException from my .net 2.0 application
I am getting this exception from my ASP .net application running in a webfarm.
Exception Type: System.Web.HttpException
Exception Message: Unable to validate data.
---- Stack Trace ----
...
0
votes
3answers
72 views
ASP.NET MVC properly handling invalid URLs
I'm trying to properly handle and return a 404 for this URL: http://localhost:2867/dd./xml (notice the dot before the slash)
In my current implementation I get 4 exceptions/errors in ...
0
votes
1answer
125 views
System.Web.HttpException with BasicAuthentication custom HttpModule
I am trying to debug a System.Web.HttpException that I keep getting. It could be related to a BaiscAuthentication custom HttpModule I am trying to implement.
The BasicAuthentication HttpModule is ...
0
votes
1answer
718 views
The handle is invalid. (Exception from HRESULT: 0x80070006 (E_HANDLE))
hi i have deploy my website on a shared hosting onn which ii7 is running, my web application i build in .net framwork 3.5, i have a download button on which i run this code to download selected file ...
0
votes
0answers
231 views
HttpException unhandled when using Server.Transfer or Response.Redirect
I am having a problem when using
Server.Transfer("mypagehere")
or
Response.Redirect("mypagehere")
Though I am not using it in a common way ; I have written my own control in the app_code ...
0
votes
3answers
1k views
Server cannot modify cookies after HTTP headers have been sent
I am creating a web application in C#.
When my page loads I fire an asynchronous thread to process some data. Part of this processing is the updating of a cookie. However when I save the cookie to ...
0
votes
0answers
316 views
Castle Windsor PerWebRequestLifestyleModule + IIS7.5 + .Net 4.0 == HttpException?
We have a large website running on both a custom Mvc framework (based on rails) and Asp.Net Mvc. We are using Castle Windsor for our IoC container to power both our custom and Asp.Net Mvc frameworks.
...
0
votes
1answer
72 views
DebugDiag configuration for catching specific HttpException
Does anyone have any experience with setting up DebugDiag to trigger on a specific HttpException? The advanced configuration only allows you to specify the .NET type of the exception, while ...
0
votes
3answers
934 views
Server.Transfer(“error_404.aspx”) in Application_Error returns a blank page
I look for HttpExceptions in the Application_Error sub of my global.asx
Sub Application_Error(ByVal sender As Object, ByVal e As EventArgs)
Dim ex As Exception = ...
0
votes
1answer
678 views
Not getting redirection to custom error page using custom errors - ASP.Net
Here's my Application_OnError event sink in global.asax.vb:
Sub Application_OnError(ByVal sender As Object, ByVal e As EventArgs)
Dim innerMostException As Exception = ...
0
votes
2answers
382 views
Respone.Redirect causes error once in a while, but i can't reproduce it
I have a website that will log the user out after a while of inactivity. This is done by the following code:
window.location = "./logout.aspx?timeout=true";
But three times in the last couple of ...
0
votes
2answers
900 views
How do you test error handling involving “remote host” errors with ASP.NET development server?
We have an ASP.NET website in production that generates a report and sends it to the user's browser as a PDF file. Our error reporting is showing that we are getting a lot of this exception:
...