Tagged Questions
The ihttphandler tag has no wiki summary.
41
votes
3answers
3k views
Significance of bool isreusable in http handler interface
When writing a http handler/module, there is an interface member to implement called - bool Reusable.
What is the significance of this member? If I set it to false (or true), what does this mean for ...
22
votes
3answers
1k views
What is the use for IHttpHandler.IsReusable?
I'm writing a IHttpHandler and I'll need to implement a IsReusable property. When I look at the MSDN documentation it says:
Gets a value indicating whether another request can use the
IHttpHandler ...
12
votes
2answers
1k views
Why isn't my IHttpHandler being called?
I'm trying to get a custom handler to work for a specific URL (or set of URLs) in ASP.NET 3.5.
The handler doesn't actually do anything significant yet - it just logs the request. I can post the code ...
11
votes
3answers
6k views
ASP.NET: How to access Session from handler?
i'm trying to store some values in the Session from a Handler page, before i do a redirect to a WebForms page, that will pick up the Session values and pre-fill the WebForm:
public class Handler : ...
10
votes
4answers
838 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) ...
10
votes
3answers
3k views
Image from HttpHandler won't cache in browser
I'm serving up an image from a database using an IHttpHandler. The relevant code is here:
public void ProcessRequest(HttpContext context)
{
context.Response.ContentType = "image/jpeg";
int ...
8
votes
3answers
2k views
How to send a Status Code 500 in ASP.Net and still write to the response?
I have an ASP.Net single-file web service (a .ashx file containing an IHttpHandler implementation) which needs to be able to return errors as responses with 500 Internal Server Error status codes. ...
6
votes
5answers
2k views
Can ASP.NET Routing be used to create “clean” URLs for .ashx (IHttpHander) handlers?
I have some REST services using plain old IHttpHandlers. I'd like to generate cleaner URLs, so that I don't have the .ashx in the path. Is there a way to use ASP.NET routing to create routes that ...
4
votes
4answers
2k views
Uploadify ashx file Context.Session gets null in mozilla
I have a file upload in my site which is done using uploadify it uses a ashx page to upload file to database.It works fine in IE but in Mozilla the context.Session is getting null.I have also used ...
4
votes
4answers
1k views
ASP.NET - Dynamically register an HttpHandler in code (not in web.config)
Is there a way I can dynamically register an IHttpHandler in C# code, instead of having to manually add it to the system.web/httpHandlers section in the web.config.
This may sound crazy, but I have ...
3
votes
1answer
98 views
Properly respond to a HEAD request
I have an IHttpHandler serving dynamically generated files. I wish to respond to HEAD requests to let the client know whether the file has changed.
I need to send the last change date and the file ...
3
votes
3answers
347 views
Why is this class library dll not getting information from app.config
I am developing a custom HttpHandler, to do so I write a C# Class Library and compile to DLL.
As part of this I have some directory locations which I want not hard coded in the app, so i'm trying to ...
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
1answer
859 views
ASP.Net MVC: Change Routes dynamically
usually, when I look at a ASP.Net MVC application, the Route table gets configured at startup and is not touched ever after.
I have a couple of questions on that but they are closely related to each ...
3
votes
2answers
1k views
Log file is not being written to from an HttpHandler
I want to capture all the requests going to *.jpg files on my server. To do so, I have created an HttpHandler whose code is as follows:
using System;
using System.Collections.Generic;
using ...
2
votes
1answer
34 views
IRequiresSessionState does not work
I have been struggling with this a while now.
I implemented a basic IHttpHandler with the following code and SESSION keeps being newed up:
namespace ClassLibrary1
{
public class MyHandler : ...
2
votes
2answers
103 views
Unbuffered output from IHTTPHandler
I want to stream data from an IHttpHandler class. I'm loading a large number of rows from the DB, serializing, and compressing them, then sending them down the wire. On the other end, I want my client ...
2
votes
2answers
243 views
HttpHandler isReusable, true or false for sending ~75 emails at a time
I'm trying to get my head around this isReusable property of the IHttpHandler interface but need your help.
I'm raising an event each time a document is saved in a CMS I'm using, and I want that ...
2
votes
1answer
504 views
Session values lost in an ASP.NET application
I created HttpHandler class in ASP.NET and configured a website to handle any request with the *.test path.
public class GameHandler : IHttpHandler, IRequiresSessionState
{
public bool IsReusable
...
2
votes
3answers
435 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
999 views
Webclient using download file to grab file from server - handling exceptions
I have a web service in which I am manipulating POST and GET methods to facilitate upload / download functionality for some files in a client/server style architecture. Basically the user is able to ...
2
votes
3answers
435 views
Should I set IsReusable to True in my HttpHandlers?
I've never fully understood this property of the IHttpHandler. It is a property that you have to set when you implement the interface. I've assumed that setting it to true would be better for ...
2
votes
2answers
803 views
HttpHandler instance and HttpApplication object - does the latter…?
A Book showed an example where ( when using IIS7 ) the following module was configured such that it would be used by any web application ( even by non-asp.net apps ) running on a web site. But:
A) if ...
2
votes
2answers
425 views
Static files and authentication in ASP.net
Say I have a virtual folder /topFolder/ in IIS7, and in that folder there can be any file that can be displayed in a browser (xml, html, swf, doc etc - typically "unmanaged" resources from the IIS ...
2
votes
1answer
991 views
Difference asp.net web service and Ihttphandler
Simple task like make AJAX request , pass one parameter and return result, can be done with Web Service and IHttpHandler, so where is the difference ?
2
votes
2answers
198 views
Problem implementing Paul Johnson's Web Widget code, it works in VS 2008 but not in deployment to IIS 6.0
Using the instructions from Paul Johnson's Web Widgets page I created my own custom widget. However because I was deploying to IIS 6.0 I utilized the web.config change recommended to render the page ...
1
vote
1answer
75 views
Best practices for parsing XML and storing it in SQL Server database
I'm working with a solution in which a http handler receives chunks of XML. These chunks should be parsed and mapped into a SQL Server database model.
I've seen some solutions where the parsing is ...
1
vote
2answers
67 views
Resizing an image in VB.NET
I have the following code in my IHttpHandler:
Dim MemoryStream1 As New System.IO.MemoryStream
MemoryStream1.Write(SqlDataReader1("cover"), 0, SqlDataReader1("cover").Length - ...
1
vote
1answer
54 views
ASP.NET HttpHandler not called unless there is a Session
I have created a very simple ASP.NET HttpHandler and for some reason it is not being called unless the user is logged on. I have it assigned to handle PNG images. For a first time visitor to the ...
1
vote
2answers
54 views
How do i Deploy HttpHandlers in asp.net 2.0
Question:
How does one deploy a HttpHandler in asp.net 2.0?
Updated Http Handler code (Inside App_Code):
namespace Samples
{
public class SampleHandler : IHttpHandler
{
public ...
1
vote
1answer
57 views
How do I add an HttpHandler to the web.config?
I wrote a httphandler to handle all XSLT requests.
The name of the handler is XSLTHandler.cs.
web.config
<configuration>
<system.web>
<compilation debug="true" ...
1
vote
2answers
176 views
checking session variable (null or not) causes an Exception in a Handler class
I have a situation like the one described in this thread:
How can i get the value of a session variable inside a static method in c#?
However, there are no static methods here (just a class inherited ...
1
vote
0answers
355 views
HttpContext.Request.Form has value, null when assigned to variable
I am at a loss. We have a class that handles callbacks from client-side actions
jQuery.ajax({data: data, error: null, success: null, type: "POST", dataType: 'json', url: "/mylogger.axd"});.
I ...
1
vote
1answer
208 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
250 views
How do I persist session values in ASP.NET?
I'm implementing IHttpHandler and IRequiresSessionState and I'm using context.Session but after I set up a value in Session, it's lost in the next request. What can I do to persist the values ?
...
1
vote
0answers
121 views
How do I get a IHttpHandler to do authentication properly?
I have some IHttpHandler implementations where they may optionally have authentication applied to them.
I originally rolled my own Basic authentication but would now like to use IIS's capabilities so ...
1
vote
2answers
288 views
“Invalid use of response filter” when compressing response from an IHttpHandler
I have an IHttpHandler returning a file. When the response stream is compressed, either automatically using Telerik RadCompression or by explicitly setting a filter using
context.Response.Filter = ...
1
vote
1answer
483 views
Sending XML data via HTTP POST to IHttpHandler causes HttpRequestValidationException
I'm writing an IHttpHandler implementation that will receive XML data sent through a regular HTTP POST from another website.
Here's a prototype of the implementation:
public class MyHandler : ...
1
vote
0answers
162 views
random ordered request for jQuery Autocomplete on C# IHttphandler
I've got a autocomplete textbox requesting an IHttphandler via IIS7 written in C#.
But the requests that get to the webserver seems to arrive unorder.
Here is an example of the log I get from the ...
1
vote
1answer
367 views
Update page after file download
I put together a download script after some wonderful help from stack overflow the other day. However I've now found that after the file has been downloaded I need to reload the page to get rid of the ...
1
vote
2answers
149 views
Can you programatically define ASP.NET configuration?
Is it possible to define a large portion, if not the entire, web.config of an ASP.NET application in code? If so, how? Would you use an IHttpModule? In the same vein, can you resolve an IHttpHandler ...
1
vote
3answers
234 views
Why my HttpHandler is ignored?
In an ASP.NET application, I need to do some changes on every CSS file sent.
So I created an HttpHandler (inside the app itself), added:
<add verb="*" path="*.css" ...
1
vote
0answers
96 views
Default action for http handler?
I'm working on setting up a site that controls access to a directory for downloads using an ihttpmodule. Since the files are all zip, exe, rar, and so on, the default handler isn't being applied and ...
1
vote
1answer
150 views
Web.Routing for the site root or homepage
I am doing some work with Web.Routing, using it to have friendly urls and nice Rest like interfaces to a site that is essentially rendered by a single IHttpHandler. There are no webforms, the handler ...
1
vote
1answer
126 views
Am I using handlers in the wrong way?
Hey,
I've never used HTTP Handlers before, and I've got one working, but I'm not sure if I'm actually using it properly. I have generated a string which will be saved as a CSV file. When the user ...
1
vote
2answers
90 views
IHttpHandler Request object and virtual directory issue
I am writing a class that inherits from IHttpHandler for script and css combining. I only want to combine if the querystring has a special parameter defined. If this parameter is not defined then I ...
1
vote
1answer
86 views
ASP.NET - Creation of custom page with custom tags, with event handling
I am trying out some code which enables me in creating a page with extension .asp2
The tags included will also be custom, something like:
<asp2:H>
<asp2:T>
First Page
...
1
vote
1answer
569 views
Firefox not handling content type correctly when using IHttpHandler
Firefox is for some reason not properly handling content sent through my .NET HTTP handler; it appears to be not honoring the content type header. Rather, it sees the content as being HTML. The URL ...
1
vote
4answers
523 views
ASP.NET development server unwilling to upgrade to .NET 3.5
I had an ASP.NET 2.0 web project. Worked fine. I decided to upgrade the site to 3.5. The upgrade worked fine. I have added a IHttpHandler that required to include the following line in the web.config:
...
1
vote
2answers
387 views
IHttpHandler for images producing a stackoverflow in IE
I have a directory of images that reside outside the context of my web application that I need to serve to the user. Currently I'm using an IHttpHandler to serve the images and using some javascript ...