Tagged Questions
The ihttpasynchandler tag has no wiki summary.
10
votes
4answers
833 views
Why does IHttpAsyncHandler leak memory under load?
I have noticed that the .NET IHttpAsyncHandler (and the IHttpHandler, to a lesser degree) leak memory when subjected to concurrent web requests.
In my tests, the Visual Studio web server (Cassini) ...
6
votes
2answers
772 views
What is the best way to upload files with ASP.NET MVC 2?
What is the best method for uploading files of variable size (either very large or very small to an ASP.NET MVC 2 application file system)?
This is what I understand so far:
It seems like there ...
5
votes
1answer
97 views
When do I use System.Threading.ThreadPool and when do I use one of the many custom thread pools?
I'm working on creating an asynch handler for asp.net that will execute a slow stored procedure. I think I understand that to gain additional throughput on a mix load of slow and fast pages, that the ...
3
votes
1answer
324 views
Using an IHttpAsyncHandler to call a WebService Asynchronously
Here's the basic setup. We have an ASP.Net WebForms application with a page that has a Flash application that needs to access an external Web Service. Due to (security I presume) limitations in Flash ...
3
votes
1answer
351 views
Why is IHttpAsyncHandler being called over IHttpHandler?
I made a custom handler that derives from MvcHandler. I have my routes using a custom RouteHandler that returns my new handler for GetHttpHandler(), and I override ProcessRequest() in my custom ...
3
votes
2answers
1k views
Pattern for Reusable asynchronous HttpHandler
I'm currently developing a custom HttpHandler (for compressing/combining CSS, but that doesn't matter for this question).
I started with a simple reusable=true synchronous HttpHandler like we all ...
3
votes
2answers
4k views
IIS 7.0 503 errors with generic handler (.ashx) implementing IHttpAsyncHandler
I'm running into some performance issues using a generic handler that implements IHttpAsyncHandler. At its simplest, the handler receives a GET request, and 20 seconds later ends the response after ...
2
votes
2answers
258 views
Simulating push technology by rebuilding the AsynchResult Object - is it even possible?
Recently, I successfully created a long-polling service using HttpAsyncHandler’s. During the development it came to me (that) I “might” be able to re-use the AsyncResult object many times without ...
2
votes
1answer
229 views
IHttpAsyncHandler and IObservable web requests
Within Async handler I'm creating an IObservable from webrequest which returns a redirect string.
I'm subscribing to that observable and calling AsyncResult.CompleteCall() but I'm forced to use ...
2
votes
1answer
665 views
Trouble sending file through IHttpAsyncHandler
I'm using a IHttpHandler to call a webservice and return the resulting byte[] to the client as a downloaded file attachment. This works fine, but when I tried changing the IHttpHandler to a ...
2
votes
3answers
2k views
How to Make ASP.NET MVC Recognize IHttpAsyncHandler from IRouteHandler.GetHttpHandler()?
In this question & answer, I found one way to make ASP.NET MVC support asynchronous processing. However, I cannot make it work.
Basically, the idea is to create a new implementation of ...
1
vote
1answer
206 views
How to setup an IHttpAsyncHandler?
I am trying to setup an asynchronous HttpHandler, but I have no idea if I am on the right track. There doesn't seem to be much documentation on it. I would just like to get the request to fire off the ...
1
vote
1answer
495 views
Asynchronous http handler dealing with .csv files in asp.net
I have developed a live scoring application which is based on the long polling approach, or Comet as they also call it. I have used ASP.NET 4.0 running on IIS 6 (windows 2003 - only two CPUs, which ...
1
vote
0answers
347 views
Async Http Handler
I have a ASHX that do bulk insert at a SQLite. This page load for 2sec +/-
Its a good practice implement it with Async Http Handler to not hold a ASP.NET Thread while I do I/O work.
To turn my ...
0
votes
0answers
10 views
Internet Explorer 9 Silverlight 4 memory leak
We are streaming video from a ashx implementing IHttpAsyncHandler to our Silverlight client.
On the clientside the async handler is getting use in a implementation of MediaStreamSource.
It all runs ...
0
votes
0answers
16 views
IHttpAsyncHandler returning data when event is triggered
Problem
I am developing a web portal which requires a status object in Javascript to be updated when a backend process triggers it. I have decided to go down the route of using HTTP Long Polling and ...
0
votes
1answer
72 views
Why async hadler is doing loops when exception occures?
I have this handler. I had an exception occuring in the 'StartTransfer' method of the inner class (I've marked the spot), and for reason i don't know it went looping this method. Why did it go loops ...
0
votes
1answer
46 views
IHttpAsyncHandler instance use by the runtime
Given an IHttpAsyncHandler instance A, will A be the instance that receives the EndProcessRequest callback? If so, it is guaranteed? Does the IsReusable property alter the behavior at all?
It's ...
0
votes
1answer
434 views
BLOB Reading via IHttpAsyncHandler
I am storing images in SQL Server 2000 database (BLOB type). There is a web page in my ASP.NET application which need to show a lot images to the end user and i want to handle browser's requests for ...
0
votes
2answers
621 views
ASP.Net: IHttpAsyncHandler and IRequiresSessionState not working
I have implemented an IHttpAsyncHandler. I am making about 5 different AJAX calls from a webpage that has widgets to that handler.
One of those widgets takes about 15 seconds to load(because of a ...
0
votes
1answer
170 views
IHttpAsyncHandler causes UnathorizedAccessException
For the last couple of days of my X-mas holidays, I have been struggling with an UnathorizedAccessException when trying to READ a XML file on a remote share through my ASP.NET application using an ...
0
votes
1answer
241 views
Can I define frequency check for ThreadPool.QueueUserWorkItem?
I implemented a System.Web.IHttpAsyncHandler to limit website bandwidth usage for files download. Once defined user bandwidth, I need to send a byte[] every second (or 1000 milliseconds, to be ...