Defines an endpoint in the ASP.NET pipeline for processing a request.

learn more… | top users | synonyms

1
vote
1answer
60 views

How can I call a method that's defined in an Http Handler file (.ashx) in my controller (ASP.NET MVC)?

I am completely new to .ashx and Http Handlers. But, what I want to do is call a method that's defined in my .ashx file from within my controller. For example, I have my .ashx defined as follows: ...
0
votes
2answers
30 views

Why don't ASP.Net handlers support session by default

I understand that in order for a ASP.Net handler to support session state you need to implement both IHttpHandler and IRequireSessionState, but why isn't session state provided by default? If for ...
2
votes
1answer
26 views

How do I speed up a custom IHttpHandler for many small thumbnails?

I have a custom IHttpHandler that is trying to process a page with 80-ish thumbnails at once and more are deviled when scrolling the page. (5000 total) The thumbnails are all 144x144 JPEGs and ...
5
votes
1answer
382 views

Resizing Images using HTTP Handler ASP.Net, some images not showing up

I'm at my wits end here. I've a HTTP Handler (ImageHandler.ashx) that sends down images (resized), its a standard HTTP handler (tried this with Reusable true and false) that uses the ...
0
votes
2answers
110 views

Accessing context session variables in c#

I have an ASP.NET application and dll which extends IHttpModule.i have used the below method to save the session variables in httpcontext through public class Handler : ...
0
votes
1answer
57 views

IHttpHandler and continue to page with PageParser.GetCompiledPageInstance

I am trying to do a simple HttpHandler that checks some things (security - though this is unimportant) and continue on to the page. It should be simple, but I obviously have 1 or both parameters to ...
0
votes
0answers
45 views

Intercepting a Request before it gets to it's HttpHandler

I've got ELMAH error logging set up in my Umbraco (6.02) site. I only want users who are logged in to Umbraco to be able to see the Elmah.axd page. I dont want to use forms authentication as this is ...
1
vote
1answer
44 views

Download a resx file from IIS (or any other type of asp files)

I've already got a filehandler that servers all types of files (they are loaded from the DB). This is the configuration: <handlers> <add name="Supertext Document Download" path="*" ...
1
vote
0answers
145 views

Intersystems Cache - Using Cache Server Page (Intersystems) to call ASHX through javascript

I am using Cache Server Page (Intersystems) and trying to call ASHX through javascript, but it doesn't work. How do I call ashx written in c# in cache server pages ? I tried to to use the following ...
1
vote
1answer
24 views

How does the Ihttphandler interface expose the httpcontext object

Hello I see on msnd that anything that inherits from the Ihttphandler interface has access to a httpcontext object (under the remarks section of the page in below link) msdn HTTPContext My question ...
0
votes
0answers
19 views

Does a .NET Custom HTTP Handler Use IIS compression

I've created a custom asp.net c# http handler for images/css/js. Static and dynamic compression is turned on in IIS7.5. Will this custom handler use standard IIS7.5 compression?
0
votes
0answers
110 views

Using ASP.NET Handler (Net v2) to bind a Cache Dependency to Static Files to refresh them

let me explain my needs and the issue. The Main Goal I have a huge web application working on Asp.Net 2.0, in Classic mode. For some dependencies and deploy problems I actually cannot upgrade the ...
1
vote
1answer
194 views

How to register a handler in web.config for iis7

I had to 301 redirect some htm pages. I am trying to do it via httphandler. This website dosen't use any namespace. I created A test handler as follows:- <%@ WebHandler Language="C#" ...
0
votes
1answer
124 views

Implementing IhttpHandler and IConnectionIdFactory(SignalR) in a class

I have a class SignalRConnection. Here I want to generate a connectionId for signalR . I want a new connection Id if the session is null else return the same connection.I tried to implement ...
1
vote
1answer
114 views

Why is my HttpHandler not being fired?

I am trying to use a http hadler, so I created a class lirary project and added this code: namespace MyProject.Handlers { public class Class1 : IHttpHandler { public bool IsReusable ...
0
votes
1answer
154 views

Using IHttpHandler and Threadpool VS using IHttpAsyncHandler

IHttpAsyncHandler means run the request asynchronously. Using the thread pool also can run asynchronously. So if I want to implement a function (like Comet,long poll), between using thread pool with ...
0
votes
1answer
95 views

IHttpAsyncHandler unloading

I have a large COM object that needs to be called from a web service. So I implemented an IHttpAsyncHandler class, with the hope of holding a reference to the COM object. That way the load time would ...
1
vote
1answer
303 views

Situations when IHttpHandler GetHttpHandler does not fire

I have a project that requires changes in MVC's default routing behavior for image http requests. For example, this sample from RouteConfig.cs Route ImagesRoute = new ...
0
votes
1answer
213 views

Access textbox value from ashx page

This is my Form Tag from The Master Page: <form id="form1" runat="server" action="Handler.ashx" method="POST" enctype="multipart/form-data"> I have a TextBox in my Content Page: ...
1
vote
2answers
87 views

Passing a string from IHttpHandler to Javascript and then to Silverlight

I am using a handler to act as a proxy between a server with a string (actually a xml but I am trying for a string) and my Silverlight app. I have written the handler and it properly collects the ...
0
votes
1answer
52 views

Ihttphandler does not work on Local IIS, but works once compiled and deployed on server

We upgraded our web app from asp 3.5 to 4.0 framework with minor issues. Now a block of code that I used to be able to debug throws and error, but once I compile and publish it in release mode and ...
0
votes
0answers
230 views

response.redirect or server.transfer from httphandler

I need to redirect to another apsx page from my custom httphandler. I tried redirecting from the context and it goes to the new page and executes the code but it never refreshes to the new page ...
0
votes
1answer
79 views

Trying to get the HTML of a control in a IHttpHandler

I have created a class that implements IHttpHandler, and I need it to return the rendered HTML of a databound user control that I have made. While I can get this to work, it doens't work exactly as ...
1
vote
1answer
78 views

Export Microsoft.Office.Interop.Excel via IHttpHandler

Barely keeping my head above water on this one. I think I can put together an iHttpHandler. I think I can put together an Excel file. I think I can call it with jQuery, passing arguments without ...
1
vote
1answer
329 views

Can I use ServiceStack's ISession in a ASP.NET hosted IHttpHandler and existing ASP.NET page?

I'm in the process of migrating my app over to ServiceStack, and have registered up the existing MVC3 Controllers using ServiceStackController, as outlined by How can I use a standard ASP.NET session ...
0
votes
0answers
187 views

file not found when using jquery and http handler using FireFox

The code below is used to copy a file into a directory but I continue to get an exception "C:\Program Files (x86)\Common Files\Microsoft Shared\DevServer\10.0\abc.jpg" file not found error. Thanks ...
2
votes
1answer
1k views

IIS 7, HttpHandler and HTTP Error 500.21

On IIS 7, I'm trying to use custom HttpHandler for my ASP.NET web application. I use pipeline mode "classic", .NET version is 4.0.30319, my web.config configuration for the handler is: ...
0
votes
2answers
86 views

How to get the web site assembly from a library

My solution comprises 2 projects, a ASP.NET MVC 3 project -- Company.Web and a .NET library project -- Company.BLL. The library contains a class implementing IHTTP -- Company.BLL.Fido. I have ...
1
vote
1answer
101 views

can httphandler fire an event?

I want to check Session in some pages. To do this I am adding the page names which I want to check inside web.config as a appsetting key. I want to use httpHandler with firing an event after it finds ...
0
votes
1answer
206 views

Call StaticFileHandler

I have an HttpHandler mapped to aspnet_isapi.dll to perform a custom authentication check on static files (.pdf files) using IIS 7.5 in Classic mode: void IHttpHandler.ProcessRequest(HttpContext ...
0
votes
1answer
308 views

.NET IHttpHandlers - different session in each AJAX request

I'm writing a jQuery Mobile app that makes several AJAX requests to a few different IHttpHandler classes on my server. The handlers all return JSON or JSONP, and include the context.Session.SessionID ...
0
votes
1answer
71 views

showing “processing” while process request is working

I just wrote a IhttpHandler in ashx page and I´m making a call from a javascript function like this: function obtenerFichero(id) { document.getElementById('<%= proces.ClientID ...
2
votes
1answer
220 views

IHTTPHANDLER / download files .Nothing happens at webpage

I wrote a Ihttphandler in order to download files : public class DescargaFichero : IHttpHandler { public void ProcessRequest(HttpContext context) { Okiservice usuariosbd = new ...
0
votes
0answers
385 views

HttpHandler with *.mvc in MVC

This is MVC with IIS6 classic mode. <system.web> <httpHandlers> <add verb="*" path="*.mvc" ...
5
votes
1answer
313 views

File transfer eating a lot of CPU

I'm trying to transfer a file over a IHttpHandler, the code is pretty simple. However when i start a single transfer it uses about 20% of the CPU. If i were to scale this to 20 simultaneous transfers ...
3
votes
1answer
910 views

Error when calling MvcHttpHandler.ExecuteRequest from custom IHttpHandler

I have a custom IHttpHandler that calls MvcHttpHandler implemented as described in this answer. It worked well in asp.net MVC2, but after I migrate the code to MVC4 with IISExpress 7.5, I start ...
4
votes
2answers
657 views

ASP.NET C# OutofMemoryException On Large File Upload

I have the following file upload handler: public class FileUploader : IHttpHandler { public void ProcessRequest(HttpContext context) { HttpRequest request = context.Request; ...
0
votes
1answer
110 views

http handlers enable session state

Using http handlers I am redirecting the users to some other page. Example: if we enter about.aspx, i will redirect the user to page.aspx?pageid=20 using server.transfer. But the problem is,in ...
0
votes
1answer
415 views

httphandlers in azure 500 internal server error

I am not able to work with htpphandlers in azure after deploy, it is ok with in the local machine. In web.config I declared as follows <system.web> <httpHandlers> <add verb="*" ...
0
votes
1answer
128 views

MVC Controller vs IHttpHandler or another suggestion?

I'm developing a middle level ad server and I use IHttpHandler for the ad handlers(ad handlers insert a few log, db connections and gets a string response at the end). I would like to be sure which ...
0
votes
1answer
167 views

How can I Get Bitmap From Project Folder?

I have an ImageHandler class that I am using to retrieve photos from an active directory. However I want to display a default image in the event that one cannot be retrieved. I tried using return ...
1
vote
1answer
398 views

IHttpHandler file transfer Progress?

I have a simple IHttpHandler for chunked file transfer, and in the client code i'd like to report progress of percentage of the file, in the past I did it by dividing the amount of bytes transferred ...
1
vote
1answer
547 views

Registering HttpHandler for IIS 7.0

Very simple question, but nonetheless confusing. According to the Microsoft documentation, it is necessary to register a HttpHandler (used to serve images dynamically from DB) in the <handlers> ...
2
votes
2answers
727 views

Efficient forwarding HTTP requests with an IHttpAsyncHandler

I'm developing a HTTP front controller, based on the pattern of Martin Fowler (link). In my case the controller has the following responsibilities: - Unmarshall encapsulated data - Authorize the ...
0
votes
1answer
413 views

Global.asax events not firing for IHttpHandler

I've written a C# HttpHandler in VS2010 and want to do some initialisation in the application_start() event (e.g. set up logging etc.), but for some reason it isn't firing. I've tried running against ...
0
votes
1answer
462 views

HTTP Handler doesn't fire

I have a HTTP Handler which does not fire. i just noticed that adding a break to my code. The strange thing is the page where the handler is called and the HTTPhandler have the same namespaces ... I ...
3
votes
3answers
163 views

How to obtain a reference to the default ASP.NET page handler or web-services handler?

Consider a Web.config file containing the following httpHandlers declaration: <httpHandlers> <add verb="*" path="*" type="MyWebApp.TotalHandlerFactory"/> </httpHandlers> In ...
2
votes
2answers
212 views

Centralized image server with security and water mark on it

I have a situation where I have to make a centralized image website. I want to secure those images from direct access. I want to send response with a watermark over it depending on request parameter. ...
0
votes
1answer
189 views

Embedding dll into HttpHandler using embedded resources

I would like to embed depencency dll into my HttpHandler dll for easier deployment, so I was thinking to add it to solution as embedded resource and use AppDomain.CurrentDomain.AssemblyResolve event ...
0
votes
1answer
255 views

Stopping Non-Users from Accessing Static Resources

I'm working on restricting access of static PDF files to only logged-in users. I only want to use a server-side redirect from the resource when a request comes that doesn't have the proper ...

1 2 3 4