Tagged Questions
HttpHandlers are classes that implement the IHttpHandler and IHttpAsyncHandler interfaces. This section describes how to create and register HttpHandlers and provides examples of a synchronous handler, an asynchronous handler, and a handler factory.
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 ...
28
votes
5answers
4k views
IHttpHandler vs IHttpModule
My question is simple (although the answer will most likely not be): I'm trying to decide how to implement a server side upload handler in C# / ASP.NET.
I've used both HttpModules (IHttpModule ...
19
votes
5answers
756 views
How do get clean URLs like Stackoverflow?
On some .NET driven sites URLs don't end with asp.net page names, like default.aspx, instead they use a pattern http://sitename.com or http://sitename.com/subdirectory/subdirectory. The site is mapped ...
14
votes
2answers
5k views
using Plupload with ASP.NET/C#
UPDATE
I was able to get everything to work properly and I just wanted to post back with the updated code. I used Darin Dimitrov's suggestion on using a separate generic http handler for handling the ...
12
votes
2answers
519 views
Disabling ASP.NET HttpHandler response caching
Background
I'm in the midst of comparing the performance of NancyFx and ServiceStack.NET running under IIS 7 (testing on a Windows 7 host). Both are insanely fast - testing locally each framework ...
12
votes
2answers
120 views
What is the verb=“*”?
Can any one tell me , when we register the custom HTTPHander in web.config like below
<add verb="*" path="SampleHandler.new"
type="SampleHandler, SampleHandlerAssembly" />
in this What ...
12
votes
3answers
1k views
Something faster than HttpHandlers?
What is the fastest way to execute a method on an ASP.NET website?
The scenario is pretty simple: I have a method which should be executed when a web page is hit. Nothing else is happening on the ...
11
votes
2answers
10k views
How to use Generic Handlers (ASHX) in ASP.NET MVC?
I need a image generator in my ASP.NET MVC application, but I don't know if it is possible to use ASHX in ASP.NET MVC.
If there is an class similar to IHttpHandler that inherits IViewDataContainer, ...
8
votes
1answer
3k views
Asp.Net Session is null in ashx file
I am trying to access the Session variable in Asp.Net ashx handler as shown below.
public void ProcessRequest (HttpContext context) {
context.Session["VariableName"] = Id;
}
But the ...
8
votes
1answer
879 views
Any way to add HttpHandler programatically in .NET?
I've been researching this a bit but haven't come across an answer -- is there any way to programatically add an HttpHandler to an ASP.NET website without adding to the web.config?
7
votes
2answers
2k views
Unable to map an HttpHandler to a “path/*” wildcard mapping
So I've been trying to map an http module to a sub-path of an MVC3 site. It should be pretty simple as I understand it, but it has not been working. The module is setup like so:
<handlers>
...
7
votes
5answers
739 views
asp.net file downloading - track downloaded size
I am trying to design a system for something like this with ASP.net/C#.
The users pay for downloading some content (files- mp3s/PDFs,doc etc).I should be able to track the number of bytes downloaded ...
7
votes
3answers
3k views
How to use ASP.NET Session State in an HttpHandler?
I have an HttpHandler that is run on a client page (cross domain, not on our IIS server, etc) and when they click on our embedded link it fires off the Handler on our server. So far everything is ...
7
votes
3answers
938 views
How to register HttpHandler for all subfolders in Asp.Net?
I would like to register an HttpHandler to include all subfolders of a root folder regardless of how far down they are nested. I would have expected the behavior with the below code to do just that ...
7
votes
7answers
3k views
Using a colon (:) in a url with ASP.NET/IIS
I'm implementing a custom controller in ASP.NET MVC and really want to be able to use a colon in the urls, so that I can identify class/column names and their values, like so:
...
6
votes
2answers
64 views
How to process long running requests with an HTTP handler under IIS?
I need to process long running requests inside IIS, handling the request itself is very lightweight but takes a lot of time mostly due to IO. Basically I need to query another server, which sometimes ...
6
votes
2answers
333 views
Performance difference between Synchronous HTTP Handler and Asynchronous HTTP Handler
Is there a performance difference between Synchronous HTTP Handler and Asynchronous HTTP Handler?
IHttpHandler vs IHttpAsyncHandler
Why choose one over another?
What are the benefits?
6
votes
1answer
314 views
Why does ASP.NET Routing take precendence over web.config Http Handlers section?
Our shop is integrating ASP.NET MVC into a large web application that utilizes custom & 3rd party HTTP Handlers defined in web.config under system.webServer\handlers. Leveraging HTTP Handlers in ...
6
votes
3answers
2k views
HttpHandler to hook the *.svc requests
I'm trying to create a custom ASP.NET HttpHandler to work with any requests to a WCF web services (*.svc) to return a simple predefined SOAP message.
However, after added the HttpHandler to the ...
6
votes
3answers
3k views
Mapping specific folder to HttpHandler in web.config
Is it possible to map all file extensions in a folder to a specific HttpHandler (assuming that their file extensions are mapped to aspnet_isapi.dll in IIS) ?
I've got the FLV extension mapped to ...
6
votes
5answers
5k views
Upload large files in .NET
I've done a good bit of research to find an upload component for .NET that I can use to upload large files, has a progress bar, and can resume the upload of large files. I've come across some ...
5
votes
2answers
102 views
Why is the ConfigurationManager.GetSection “system.webServer/handlers” not available?
I'm trying to read some configuration in my global.aspx Application_Start method. When I read ConfigurationManager.GetSection("system.web/httpHandlers") everything is fine:
...
5
votes
3answers
474 views
ashx vs aspx for file download
In a basic scenario where I have a GridView with files to download and link buttons to download them, is there any benefit at all for creating a custom http handler for streaming those files as ...
5
votes
3answers
1k views
Using an HTTP handler in ASP.NET to generate an image for display in email
I'm generating a barcode image as the response from an HTTP handler, like so:
public void ProcessRequest(HttpContext context)
{
context.Response.Clear();
context.Response.ContentType = ...
5
votes
4answers
2k views
Receiving “Path 'OPTIONS' is forbidden.” Exception in ASP.NET website
I am getting the error System.Web.HttpException: Path 'OPTIONS' is forbidden. since we moved our website over to a new server setup. I am unable to recreate the error but I am receiving emails for ...
5
votes
3answers
453 views
Unit testing http handlers?
My current project based in Asp .net makes considerable use of Http handlers to process various requests? So, is there any way by which I can test the functionality of each of the handlers using unit ...
5
votes
1answer
429 views
How to modify markup in ASP.NET without using Response Filter
Since ASP.NET response filtering and post-cache substitution are not compatible, I need an alternative way of filtering output. Reference: http://support.microsoft.com/kb/2014472
Is there any way to ...
5
votes
2answers
804 views
.NET: What's the difference between HttpMethod and RequestType of HttpRequest?
The HttpRequest class defines two properties:
HttpMethod:
Gets the HTTP data transfer method (such as GET, POST, or HEAD) used by the client.
public string HttpMethod { get; }
The HTTP ...
5
votes
3answers
637 views
Wildcard HttpHandler not handling Static Files
I had a look through some of the older questions, but I can't find anything.
I have a Wildcard HttpHandler on my web app which is processing the url and working out if it can do anything with it
If ...
5
votes
2answers
712 views
Render ASPX page at runtime from database
Assuming the code below:
public class DynamicAspxHandler : IHttpHandler {
bool IHttpHandler.IsReusable { get { return false; } }
void IHttpHandler.ProcessRequest(HttpContext httpContext) {
...
5
votes
3answers
2k views
Playing Quicktime video on iPhone using HttpHandler and IIS 5.1
I'm trying to stream QuickTime video to an iPhone from an ASP.NET web application using an HttpHandler. When hosting the web application from IIS 5.1 (Windows XP), the video player opens and then ...
5
votes
1answer
4k views
HttpHandler not working in IIS 7
I have an HttpHandler configured in my web.config file like so:
<add verb="GET,HEAD,POST"
path="TinyMCE.ashx"
type="Moxiecode.TinyMCE.Web.HttpHandler,Moxiecode.TinyMCE" />
When I ...
5
votes
2answers
3k views
HTTP Handler works using Cassini, but not with IIS 6
I've created a sample project to simplify my problem. I have this simple handler:
public class HandleThis : IHttpHandler, IRequiresSessionState
{
public void ProcessRequest( ...
5
votes
5answers
13k views
Create PNG image with C# HttpHandler webservice
I'd like to be able to create a simple PNG image, say of a red square using a c# web based service to generate the image, called from an <img src="myws.ashx?x=100> HTML element.
some example ...
5
votes
1answer
4k views
Custom HttpHandler not firing, returning 404 in ASP.NET MVC Application
I don't know if it is relevant that this is happening in an MVC website but thought I'd mention it anyway.
In my web.config I have these lines:
<add verb="*" path="*.imu" ...
5
votes
3answers
2k views
Can an ASP.NET HttpHandler handle an http 400 - Bad Request?
We have an HttpHandler that deals directly with binary posts over HTTP from custom client software. The client software occasionally sends data which results in IIS 7 responding with a 400 - Bad ...
4
votes
1answer
53 views
How do I use my HTTP handlers for selected paths and MVC handler for the rest?
I have an MVC2 application. I also have a set of ready HTTP handlers that derive from System.Web.IHttpHandler. How do I use them together?
I tried the following in web.config:
...
4
votes
2answers
378 views
Construtor/Setter Injection using IoC in HttpHandler, is it possible?
I've ran into a rather hairy problem. There is probably a simple solution to this but I can't find it!
I have a custom HttpHandler that I want to process a request, log certain info then enter the ...
4
votes
3answers
594 views
jQuery POST. Can't get Request parameters using custom httphandler
I have a jQuery post method with JSON data included.
In my httphandler, in the processRequest method, Request["Operation"] is null and none of my data is posted. I am in a SharePoint 2010 ...
4
votes
3answers
5k views
Problem mapping HttpHandler --> HTTP Error 404 Not Found
I am having problems trying to map an HttpHandler in the web.config.
This is the relevant config bit:
<httpHandlers>
<add verb="*" path="*.hndlr" type="MyAssembly.MyHandler, MyAssembly" ...
4
votes
3answers
656 views
Viewstate in a .ashx Handler?
I've got a handler (list.ashx for example) that has a method that retrieves a large dataset, then grabs only the records that will be shown on any given "page" of data. We are allowing the users to ...
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 ...
4
votes
2answers
469 views
Caching the response of an ASP.NET HTTP Handler server and client side
Is it possible to cache the response of a http handler on the server and on the client?
This doesn't seem to be doing the trick:
_context.Response.Cache.SetCacheability(HttpCacheability.Public);
...
4
votes
2answers
4k views
Caching http handler .ashx output
Im creating an image which has some text in it, for every customer, the image contains their name and I use the Graphics.DrawString function to create this on the fly, however I should not need to ...
4
votes
2answers
577 views
Can I route a url for a web service (ASMX) in an ASP.NET MVC Site?
I have seen how you can add custom routes to WebForms by using some code like this.
public class WebFormsRouteHandler : IRouteHandler
{
public string VirtualPath { get; set; }
public ...
4
votes
5answers
5k views
How to POST data to ASP.NET HttpHandler?
I am trying to send a large chunk of data over to a HTTP handler. I can't send it using GET because of the URL length limit so I decided to POST it instead. The problem is that I can't get at the ...
4
votes
2answers
799 views
How to map the root URL in an ASP.NET application?
I have the following in my Web.config:
<httpHandlers>
. . .
<add verb="GET,HEAD" path="/" type="Vis.Web.BootHandler, Vis" />
</httpHandlers>
That HTTP handler returns a ...
4
votes
3answers
6k views
Diagnosing 404 errors on IIS 7 and ASP.NET MVC
I have an mvc app developed and tested with Cassini. Deployed to my site on GoDaddy, and the default page comes up fine. Click to log in, and I get a 404.
I'm running under IIS 7 there, so this is ...
4
votes
8answers
2k views
 characters appended to the begining of each file
I've downloaded an HttpHandler class that concatenates JS files into one file and it keeps appending the  characters at the start of each file it concatenates.
Any ideas on what is causing this? ...
4
votes
2answers
1k views
Detecting authentication timeout in handler and redirecting entire page to login page
I am writing an application where by someone can edit paragraphs on a web page. jQuery is used to send and receive the edited paragraph data to a handler, which saves it or reads it from a database. ...