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
0answers
7 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
0answers
29 views
Very slow UploadValuesAsync
I was wondering if anyone could offer any advice.
Background
I have a little web-service that takes data from a https post, does a little transform on that data and passed it on to another ...
1
vote
1answer
51 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
40 views
why does HttpContext.Current.Server.Execute() put header in body?
When I "compile" an aspx page in my httpHandler, it moves all the html from the header into the body.
For example: aspx page looks like this:
<%@ Page Language="C#" AutoEventWireup="true" ...
0
votes
0answers
11 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
31 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
46 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
71 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
15 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
37 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
11 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
63 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
54 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
87 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
39 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
66 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
55 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
44 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
46 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
23 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
63 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
43 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
50 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
40 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
75 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
19 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
32 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 ...
0
votes
1answer
87 views
ASP.NET life cycle, PreRequestHandlerExecute Event
I am looking into identifying handler that will handle my request.
I would like to know if request is asking for static resource (that is css,js or image files).
Upon inspecting HttpContext.Request on ...
0
votes
2answers
92 views
Sanitizing string to prevent relative URI paths
I have this HTTP handler I created to update information in a local SQL Express database.
I realised that it was possible for a user to use relative URI paths "/../../file.zip" as the query string, ...
0
votes
1answer
71 views
PreviousPage in .ashx handler
Is it possible to retrieve the equivalent of Page.PreviousPage within a generic .ashx handler, following a cross-page PostBack from an .aspx page?
I need to access some POST values from the Page ...
2
votes
2answers
155 views
Connect to SQL Server Express database via HTTP handler
I am trying to update the table in the database each time the file is downloaded. The database is the "DefaultConnection(WebsiteName)" that was created when I used the sample website template. It is ...
0
votes
1answer
66 views
Global.asax Not Writing to Application EventLog Source
I am having an issue in an HttpHandler when an exception gets thrown and handled by Application_Error() within my global application file (global.asax). I am trying to write the exception.Message in ...
0
votes
1answer
45 views
outputting image with http handler
I have the following code for my handler I've debugged it and I can see that my image variable b has the actual image I need however I am not able to display it in my browser. When I run this I just ...
1
vote
1answer
30 views
How to prevent controller invocation when using an Http Handler
I have an ASP.NET MVC app and I use an Http Handler in it.
How can I prevent the site from searching for a controller to invoke after/before the HttpHandler gets invoked?
Now the handler gets ...
1
vote
1answer
71 views
Cannot call handler ashx more than once when using Response.TransmitFile
I've created a HttpHandler (.ashx) for clients download content (videos) from my website. First I was using the WriteFile method, that I realized it was requiring to much memory and then I decided to ...
0
votes
0answers
23 views
httpmodule modify request.inputstream
ASP.NET MVC
I want to Decompress Request.inputstream at Httpmodule
Can I pass the decompressed stream to httphandler ?
0
votes
0answers
129 views
IIS doesn't start application through global.asax file
I have the strangest thing:
Two folders on my PC contain different MVC3 websites. Directory 1 configured in IIS works fine. But when I configure that site instance to use the second directory I get ...
2
votes
2answers
263 views
What is the best way to implement idle time out for web application (auto log off)
I want to implement an idle time-out for the web application that we are building. I had earlier achieved this using AsynchronousSessionAuditor from codeplex, which essentially looks for the ...
0
votes
1answer
355 views
HttpHandler not always firing for MVC 4 Web API app
I am trying to write a custom IHttpHandler to authenticate users calling an ASP.NET Web API app:
public class AuthenticationHandler : IHttpHandler
{
public bool IsReusable
{
get { ...
0
votes
1answer
192 views
Return multiple parameters from httphandler to FineUploader `OnComplete`
Im using FineUploder to upload an image to web server.
javascript
function createUploader() {
var thumbnailuploader = new qq.FineUploader({
element: ...
0
votes
0answers
30 views
Getting Error in wesite “could not load type ”MyImageHandler" ..while working fine in webapplication
I am new to Handlers.I am trying to use a basic Handler in my website, but it is giving an error "could not load type " My Image Handler". My handler is in root directory. Same code when i use for ...
0
votes
1answer
55 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
44 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 ...
0
votes
4answers
119 views
Hooking into 3rd Party Web Service (WCF) calls
At my workplace we are in the process of upgrading our Time and Attendance setup. Currently, we have physical terminals that employees use to check in and check out. These terminal communicate to a ...
1
vote
1answer
207 views
file download popup is not working
I am working on ASP.NET Web form application.
My requirement is to show excel file download popupbox when user clicks on the given link (This link is on poppage not on aspx page.).
I have a aspx page ...
0
votes
2answers
70 views
Why isn't my HttpHandler being called?
Okay, I am feeling like a nincompoop now asking this.
I wrote a simple blank HttpHandler and just put a break point in the ProcessRequest method, and wrote this boiler plate registration mark-up in ...
0
votes
2answers
121 views
$.getJSON returning “undefined” or [object Object] [object Object]
I know there are some people who asked same question and get answered. I already looked ino all of them, still I couldn't solve my issue. I am having a jquery snipet which send value to a handler and ...
1
vote
1answer
412 views
why is the httphandler not running
I have written an httpHandler for an ASP.NET MVC4 site that generates an an image. The ProcessRequest function is not being called. Any thoughts on why?
MVC4, IIS Express, Windows 8 Pro
Web.config ...
0
votes
1answer
145 views
GAE python: Get and post request working without submitting a post request through a form
This is a continuation of this question
What follows is an abbreviated version of the original code. I tried to include the most relevant parts and left out the part of the script used by a cron job ...
1
vote
0answers
62 views
How do I disable the default handler HttpForbiddenHandler for viewing .cs files?
I want to be able to view the code behind files from the browser while in the development stage. To do this, I would disable the default handler of .cs files, HttpForbiddenHandler in the web.config.
...







