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.
0
votes
1answer
17 views
Create FileStreamResultfrom HttpHandler
I'm trying to hack into an external HttpHandler to return a FileStreamResult in my MVC application. I want to be able to have a clickable link and I'd rather not use JavaScript.
The path is correct, ...
0
votes
0answers
4 views
Reading AJAX request data in HttpHandler is slow
I'm experiencing slow request data reading in my HttpHandler.
Data is JSON formated, around 200 bytes (tiny), reading is done in following way:
using (var reader = new ...
1
vote
0answers
38 views
Http handlers and javacript bundling in VS 2012
I am currently trying to setup up a project to implement localization on javascript files (as described here) but at the same time I'd like to bundle and minify the javascript in the project. I ...
0
votes
1answer
12 views
Calling HttpHandler from an area
I have a simple asp.net mvc 4 website with an admin area. I have defined a custom http handler to handle uploads from a plupload script that runs in the admin area. Here is the code for the handler :
...
0
votes
0answers
10 views
Check authenticate application in all pages
I'm check authenticate user by jquery.ajax and httphandler and when true then redirect to homepage.
I want As long as the user has not login ,can't redirect the other pages (by url,..).
I change ...
0
votes
0answers
20 views
Easiest Way To Protect Direct File Access In All Sub-Folders For Certain Roles
I have a site hosted in IIS coded in ASP.NET and I have a folder called uploads which has a ton of subfolders each containing files uploaded by a single form instance. My question is what would be the ...
0
votes
1answer
77 views
Display ASP.NET generated pdf byte[] to web page without saving the file
I'm using iTextSharp for generating a pdf. I can save the PDF file from the PDF byte[].
byte[] outputPDF = cnt.CreateBreakPDF();
File.WriteAllBytes(pdfOutPutPath, outputPDF);
What is the best way ...
1
vote
2answers
66 views
How to Reference HTTP Handler from UserControl
I'm a newb trying to create an ASP.NET custom user control that will create and return .png charts to an ASP.NET web application.
I've created a simple test project that creates an ellipse on a ...
0
votes
0answers
26 views
ASP.NET posting data to payment service with HttpHandler
I'm trying to post some data to a payment service and render the response back through and HttpHandler. The response is a form the user fill out to make their payment. It's a web forms app, so I can't ...
0
votes
0answers
18 views
Looking for an idea on how to turn dynamic HTML static
Scenario: I have a menu that is dynamically created on the home page of the website, based upon user and product permissions. When the user selects a different product, the menu is re-created.
Once ...
0
votes
1answer
23 views
How to catch exception from .net httphandler at javascript?
i am trying to catch exception from httphandler to javascript frontend.
The problem is that xhr responsetext contain a full html.
I didn't found any effective way to extract the actual error message
...
0
votes
0answers
37 views
MVC4 IgnoreRoute with HttpHandler and LESS
I'm launching a new MVC4 site and am having significant trouble, I believe with routes.
This all works locally in Cassini but not on my production WIN 2012 server.
It seems like similar questions ...
0
votes
1answer
27 views
Download multi file by HttpHandler
In my app,user can download own files(image,pdf,word,...).I use HttpHandel for do it.Beginning select the file and download.I want that user can doawnload all file from list.How do this?
public ...
0
votes
2answers
39 views
Receiving a HTTP POST in HTTP Handler?
I need to listen and process a HTTP POST string in a HTTP handler.
Below is the code for posting the string to handler -
string test = "charset = UTF-8 & param1 = val1 & param2 = val2 & ...
0
votes
1answer
31 views
How to add HttpHandler located in GAC to IIS7.5
I want MyHandler installed in GAC to be applied to all applications hosted on IIS.
I made it work for particular application when I add Managed Handler on global level
<add name="MyHandler" ...
0
votes
1answer
27 views
Displaying a Message after Exporting data in asp.net
I have a Web page in which datas will be Exported on button click.
I need to display a Message as "Exported Successfully" once the Export is Completed.
But after Exporting the Message is not ...
1
vote
0answers
20 views
Handler in IIS7 Integrated mode not working
My handler works perfectly if I set the extension to *.axd but if I set it to *.mp4 the handler is not called.
public class TestHandler : IHttpHandler
{
public bool IsReusable
{
get ...
0
votes
1answer
31 views
Custom HTTP handler not working in .NET
I have created a custom HTTP handler for all the pdf files and it works perfectly fine if I directly access pdf files.
However if the same PDF page is getting called from some other asp page custom ...
2
votes
0answers
17 views
IIS 6.0 Mapped extension not calling dll on local drive
I have a dll that implements IHttpHandler and processes based on querystrings which ultimatley redirects to a specific url. I go to properties for the particular site, add the extension (.handler) in ...
0
votes
0answers
13 views
Deploying IIS Handler on IIS 6 with management console 3
Im looking for information on deploying an iis handler mapping on iis 6. Any help with this would be appreciated. Thanks.
I have class library which implements an ihttphandler object. I want to ...
0
votes
1answer
28 views
how to register a httphandler to handle all extensions in IIS?
I'm having trouble getting IIS 7 to load this handler I've written. I'm keeping things really simple to start with. I have a Handler.cs file with the following code in it:
public class Handler ...
0
votes
0answers
36 views
Downloading file using HttpHandler called using jquery ajax
I am trying to download a file using HttpHandler and jquery ajax. My C# and jquery code is as below. The C# code is part of the ProcessRequest method of the httphandler.
if ...
0
votes
0answers
34 views
IControllerFactory did not return a controller for the name 'Handlers' using HTTP Handler to call Controller
Am working on a asp.net MVC application.
On a button Click am having an JQUERY AJAX call and am calling the handler ProcessRequest function.
From that function am calling a function inside a ...
0
votes
0answers
44 views
Custom file extension handling in MVC4
I'm trying to handle my specific file extensions with my custom http handler.
The dll I'm using was working perfectly for webforms, so I want to reuse it for mvc applications.
I added handlers to ...
0
votes
0answers
22 views
html5 file chunking and httphandler
I am using HTML5 to get file and slice the file. And then sending file chunks XMLHttpRequest to HTTPHandler. The HTTPHandler is implementing IHttpHandler and IRequireSesssionState. So the requests are ...
1
vote
1answer
107 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
0answers
80 views
Why does dynamically adding a GenericHtmlElement put the head into body?
My problem is similar to this: Populate controls of dynamically instantiated Page from ASPX file?
In IIS7.5, I have a httphandler which gets an aspx page and returns the result.
NOTE: the aspx page ...
0
votes
0answers
24 views
Manually handle an upload using an HttpHandler
for a project I'm working on, I need to manually handle uploads using an HttpHandler (or something else if it works).
My project uses an http frontend, using IIS, to catch the request and forward it ...
0
votes
1answer
48 views
can vb.net read query strings with field[] format?
I'm trying to navigate through not being able to read multidimensional arrays with JavaScriptSerializer.
I think there's a workaround if I can do what's in this answer ...
0
votes
1answer
87 views
httphandler intercepting all requests in IIS 6.0
I have written a httphandler to intercept pdf files request via URL from a specific folder and redirect the user to Login page. If the user is authenticated the file can be downloaded. My web.config ...
2
votes
1answer
110 views
HTTP handlers not registering correctly under Mono MVC 3
I am at my wit's end. I'm trying to run an ASP.NET MVC 3 website under Mono via FastCGI and the HTTP handler for Cassette won't register correctly. The site is http://www.tychaia.com/.
The strange ...
0
votes
1answer
24 views
Using If Modified Since in a caching proxy
I'm writing a web caching proxy in C++ using CURL.
I developed the caching part, when my application downloads a file, it stores also it's last modification date, stores its MD5, to make the ...
0
votes
1answer
80 views
httphandler redirect goes in infinite loop
I have a httphandler which intercepts any pdf file request present inside a folder called "calderdale" and redirects the user to login page. This is how I m redirecting
if (memberLoginName == ...
0
votes
0answers
14 views
Default Documents when using PageHandlerFactory
I'm trying to do some things with PageHandler Factory. I've tried creating a class inheriting from PageHanderFactory but I am having problems when a directory is being requestsed.
I'm using it via ...
0
votes
0answers
112 views
Accessing cookies through Asp.net Generic Handler returns null
When i am trying to retrieve cookie from a handler file the HttpContex.Request.Cookie.Get("cookieName") always return null.
Let me explain about the code and design.
I have two folders in my project ...
2
votes
1answer
111 views
How to call a HttpHandler via JQuery in MVC
I haven't used httpHandlers before in MVC.
However I want to stop session timing out in my application.
I found the solution here;
http://www.dotnetcurry.com/ShowArticle.aspx?ID=453
However with my ...
1
vote
0answers
207 views
C# Sharepoint intercept all file downloads from document libraries
I have accomplished this before using HttpHandlers by adding tags to web.xml accordingly. I might as well copy the code here..
private readonly string[] SupportedExtensions = new[] { "*.docx", ...
0
votes
1answer
53 views
httphandler return into string variable
I have an httphandler that returns a string (a part description).
I'd like to use the return value in a title attribute on an image, which will be updated on a page load.
I have the following code ...
0
votes
1answer
140 views
Best way to pass a stream pdf to HttpHandler at asp.net?
I have an aspx page with a link button and I want to redirect when click to a httpHandler with the stream of the file I want to show.
For example:
The link shows a reference to my handler, at the ...
2
votes
1answer
113 views
RadEditor requires a HttpHandler registration in web.config
When I add this code to my aspx ,
<telerik:RadEditor ID="REWelcome" runat="server"
AutoResizeHeight="True" Width="500px" ToolbarMode="Floating">
<Content>
</Content>
...
0
votes
2answers
74 views
Deploy REST service without access to IIS
I have developed a .NET REST web service in C#. While I have plenty of C# experience, I unfortunately do not have much understanding in deploying such a service in a web hosting environment.
Due to ...
0
votes
0answers
59 views
aspx page is rendered as plain text after RewritePath
My ASP.NET application using HTTP Moule same as here. But whenever I try to rewrite path in my Application_PostAcquireRequestState, I am viewing Default.aspx as plain text.
Does anybody know why it ...
0
votes
0answers
35 views
How to import a xml to a custom Http handler via soapUI
I need to import a xml to Http handler for a testing purpose. How can I accomplish this through soapUI( I am unaware to use soapUI).
My xml is below -
<?xml version="1.0" encoding="utf-8"?>
...
0
votes
2answers
95 views
How to save XML node values to string parameters
I have a custom HTTP handler which will receive a XML. I need to save the nodes into string parameters.
This is the xml -
<?xml version="1.0" encoding="utf-8"?>
<alp>
...
0
votes
1answer
68 views
How would you add a httphandler for an ASPX url to Umbraco?
Using Umbraco 4.11.1, I am trying to implement a custom httphandler and having no fun getting it to work. I have perfectly functioning stand-alone web site on the same computer in which the handler ...
1
vote
0answers
70 views
APS.NET HttpHandler on Azure
I am working on Win7 x64 using VS 2012 on a webapp.
I have some httphandlers that work fine on localhost (during debug from VS on IIS express).
The handlers are specified on Web.config like this:
...
0
votes
1answer
59 views
404 in ASP.Net using httphandler
I use a httphandler to remap browser Urls to files in my website. This works fine but I am having trouble accessing files I created under a new directory. The url looks like this:
...
0
votes
0answers
120 views
GetVaryByCustomString in global.asax not called for cached responses in custom HTTP handler
I have the following code in the ProcessRequest method of a IHttpHandler instance:
public void ProcessRequest(HttpContext context)
{
context.Response.ContentType = "text/css";
...
0
votes
0answers
22 views
IIS 7.X: Modify http-request environment varibles before they are processed
This question is rather specific to Microsoft's IIS:
We are trying to modify environment variables of http-requests that are passed from the IIS to the application that is targeted by such an request. ...
0
votes
1answer
37 views
HTTPhander in .NEt application, called by JQUERY
i am trying to create a pop up message that is going to warn a user when their session is about to expire (if they take too long to fill out an online form) and extend it when they click on "OK"
this ...




