The httpexception tag has no wiki summary.
0
votes
0answers
9 views
No http handler was found for request type 'GET'
I have read and attempted the repairs in at least 8 threads here to no avail. I am still getting this error "No http handler was found for request type 'GET'" on my default.aspx file when loading a ...
1
vote
1answer
28 views
Httpexception The Controls collection cannot be modified because the control contains code blocks
I try to add a user control by ajax but I have The same problem of This One, and the suggested solution is Remove <%= From head of page, but my master page is:
As you see there is not any <%= ...
0
votes
0answers
19 views
How to not send headers to the browser for application errors before handling errors
Right now i am able to generate custom errors page with the code below at web config
<customErrors mode="On" defaultRedirect="Error404.aspx" redirectMode="ResponseRewrite">
<error ...
2
votes
3answers
60 views
NullPointerException on Simple HttpPost
If username & Password are correct it has to show "SUCCESS" else it has to show "FAILED".I'm connecting to a server using BasicNameValuePair. and its showing NullPointerException on this line int ...
0
votes
1answer
104 views
xampp 1.8.1 perl not working and tthrowing error 500
I am using xampp 1.8.1 on windows 7 and want to use it for perl, but when i execute even the most easy hello world perl script it gives me an error 500. Does anybody know what i am doing wrong? this ...
0
votes
0answers
80 views
VB.net HttpWebRequest answer Error 501 Not Implemented
Hello to everybody and thank You in advance for your help
I have to send these data to a webserver. I tried with WFetch and the server answer correctly
POST /cmd/ HTTP/1.1\r\n
Content-Length: 32\r\n
...
0
votes
0answers
137 views
A field or property with the name 'FormattedID' was not found on the selected data source.
I have an ASP.NET web form with two drop down menus. Once the user clicks on an item within the DD, a gridview with 3 columns displays the information. The 1st column, FormattedID, is a hyperlink ...
2
votes
1answer
70 views
Is there a way to channel some HTTP server events into a single javascript function?
I have a C# webserver which provides some html/js/css and images to a browser-based client.
I create the page dynamically using javascript, filling images and divs while receiving messages from a ...
0
votes
1answer
413 views
MVC rest API status code 500 with JSON return
I am developing a rest API on MVC3.
Whenever there is a problem with validation, I want to throw 500 + json that describes the error (the json can be the list of unvalidated fields).
The problem is ...
1
vote
1answer
622 views
ASP.NET How to get HttpException ErrorCode
I'm trying to catch and handle a specific HttpException, namely "The remote host closed the connection. The error code is 0x800704CD."
My intention is to add a Catch for the HttpException to the ...
1
vote
1answer
179 views
“Invalid use of response filter” when rewriting ASP.NET output
I have a very basic ASP.NET response filter that works "fine." I use it to replace the domain for static resources.
My code in the controller looks like this:
protected override void ...
1
vote
1answer
261 views
Why do I get an HttpException from VirtualPathUtility ToAbsolute with some paths?
I'm trying to use VirtualPathUtility.ToAbsolute to resolve app-relative paths, such as ~/MyPage.aspx, to application-absolute paths, such as /MySite/MyApp/MyPage.aspx. However, with some paths, I ...
0
votes
0answers
95 views
Google Search Applicance Error
I am using MC+A GSALib to interact with a Google search appliance(GSA). The GSA is set to do secure searches over an https connection. I keep getting "417: expectation failed" returned from the GSA. ...
2
votes
1answer
447 views
Windows Auth Server cannot set status after HTTP headers have been sent
I have C# n-layer application. Normaly we use Forms authentication and everything works fine, but when we tried to set authentication on Windows, it started to throw following exception in some ...
1
vote
1answer
355 views
Good idea to catch HttpException?
I have the following error in my output.aspx page sometimes:
Exception Details: System.Web.HttpException: Request timed out.
Source Error:
An unhandled exception was generated during ...
0
votes
1answer
420 views
Symfony2 HttpException(422, 'some message') not working
My problem is the following:
throw new HttpException(422, "some message") doesn't work in Controllers.
However, throw new HttpException(404, "some message") works, as well as 400 (etc.)
Why can't I ...
1
vote
0answers
1k views
MVC - Throw http exception (Unauthorized) from Application_Error
I am trying to throw this row from Global asax Application_Error
throw new HttpException((int)HttpStatusCode.Unauthorized, "Forbidden");
But for some reason I am getting 200 and not 401 in the ...
0
votes
1answer
730 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 ...
0
votes
1answer
116 views
Override, extend or roll your own HttpException?
I want to have control over my Http Exceptions to the point of being able to dictate what is in the body of the response. If I throw a standard HttpException(404, "not found"); then using fiddler I ...
0
votes
2answers
655 views
“Could Not Load Type” on deployed site refering to old pages/classes
When I run my code in VS debugger and set it to catch CLR exceptions when thrown, I get tons of these HttpExceptions saying "Could Not Load Type" that refer to pages/classes which have been removed ...
0
votes
2answers
290 views
Dealing with unhandled HttpException
I have a controller action like this:
public ActionResult Index(string url)
{
var pageTitle = url.Split('/')[0];
var page = Services.PageService.GetPage(pageTitle);
if (page == null)
...
0
votes
3answers
478 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 ...
1
vote
1answer
685 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 ...
0
votes
1answer
1k 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 ...
2
votes
2answers
8k 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 ...
3
votes
3answers
5k 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 ...
7
votes
6answers
6k views
HttpContext throws HttpException
I have written a custom http handler. I have done this by writing a class which implements the IHttphandler.
Inside that class I have code like this,
context.Response.Clear();
...
1
vote
3answers
4k 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 ...
1
vote
1answer
551 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. ...
3
votes
3answers
1k 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 ...
1
vote
3answers
2k 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 = ...
7
votes
1answer
1k 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 ...
0
votes
0answers
451 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.
...
3
votes
1answer
15k 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 ...
4
votes
2answers
955 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: ...
1
vote
1answer
680 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 ...
0
votes
1answer
135 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 ...
6
votes
4answers
832 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 ...
1
vote
3answers
2k 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
989 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 = ...
2
votes
2answers
2k 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 ...
10
votes
3answers
6k 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" , ...
0
votes
2answers
554 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 ...
1
vote
1answer
755 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 ----
...
4
votes
3answers
2k 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 ...
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 ...
52
votes
7answers
42k 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 ...
0
votes
2answers
995 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:
...
23
votes
7answers
15k 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 ...
23
votes
8answers
29k 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?