Tagged Questions
ASP.NET Web Handler file extension
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, ...
10
votes
5answers
143 views
Only count a download once it's served
We have this code which serves a download:
public class downloadRelease : IHttpHandler {
public void ProcessRequest (HttpContext context) {
-- snip --
context.Response.Clear();
...
10
votes
7answers
9k views
ASP.NET - Passing JSON from jQuery to ASHX
I'm trying to pass JSON from jQuery to a .ASHX file. Example of the jQuery below:
$.ajax({
type: "POST",
url: "/test.ashx",
data: "{'file':'dave', 'type':'ward'}",
...
7
votes
3answers
6k views
How to use output caching on .ashx handler
How can I use output caching with a .ashx handler? In this case I'm doing some heavy image processing and would like the handler to be cached for a minute or so.
Also, does anyone have any ...
5
votes
2answers
477 views
question on ashx files in asp.net
When do you use ashx files in asp.net web application ? Can some one explain in simple terminology with a pratical example ? I understood from the msdn that .ashx files implements ihttphandler but i ...
5
votes
2answers
1k views
WCF vs ASPX webmethods vs ASMX webmethods
The intent is to create a set of web services that people can reuse. These services mostly interact with a backend DB creating, retreiving and processing data.
We want to expose services so that ...
4
votes
3answers
2k views
.aspx vs .ashx MAIN difference
what are the differences between .aspx and .ashx pages.
I use ashx now when I need to handle a request that called from code and return with a response. but I still want more technical answers ...
4
votes
3answers
1k views
context.Request.Files collection empty on remote server only
I'm using a custom ashx handler to handle a file upload. When run locally, the file uploads fine.
When I use the same setup on the web server I get a "Index out of range" error.
In firebug I see the ...
4
votes
2answers
989 views
Supporting resumable HTTP-downloads through an ASHX handler?
We are providing downloads of our application setups through an ASHX handler in ASP.NET.
A customer told us he uses some third party download manager application and that our way of providing the ...
4
votes
8answers
3k views
ASP.NET MVC vs. Webforms vs. HTTP Handlers (.ashx) - which is the most lightweight?
I plan on building a simple, yet high usage webapp and need to settle on an architecture.
basic server side logic / dynamic db
driven content about half a dozen to
a dozen pages serving up all said
...
3
votes
3answers
340 views
System.NullReferenceException When checking if != null
I'm using an ASHX handler, i want the handler to check if Session != null.
if (context.Session["Username"] != null)
And i get this error pointing this line:
System.NullReferenceException: ...
3
votes
2answers
213 views
Which one is better for jQuery.ajax calls? .Net Web-Service or an .ashx?
I ahve been practicing jQuery.ajax() recently. I have started to learn to call .Net web-services qith jQuery.ajax().
Now I am considering if I will use only jQuery.ajax() calls to some service ...
3
votes
2answers
722 views
Output (server-side) caching of ashx files
I am trying to enable output caching on all ashx files in my site. I'm trying to keep the server from generating the file on each request - NOT trying to tell the browser to cache the file.
I've ...
3
votes
2answers
744 views
ASP.Net 4.0 - How to access RouteData from within an ASHX?
My web site has a handler (FileDownload.ashx) that deals with all file download requests. I've recently migrated my site to ASP.Net 4.0, and it now uses routing extensively. Everything works fine when ...
3
votes
3answers
902 views
How do you render a User control from a ashx or webservice?
Question is it possible to have a .ashx or webservice return a user control rendered? if so how would i do this?
3
votes
2answers
2k views
Silverlight access an ashx JSON response
I have a Silverlight application that is calling out to an ashx that is hosted in the same application as the Silverlight control.
The ashx does the following (stripped down):
// Basic object
class ...
3
votes
3answers
5k views
What are the benefits of an ASHX handler file in asp.net?
What are the benefits of using an ashx, or handler? Also, do I need them if I use MVC (and why not)?
Does the framework matter (2.0+)?
Why would I want to use a handler? I was recently recommended ...
3
votes
2answers
4k views
IIS 7.0 503 errors with generic handler (.ashx) implementing IHttpAsyncHandler
I'm running into some performance issues using a generic handler that implements IHttpAsyncHandler. At its simplest, the handler receives a GET request, and 20 seconds later ends the response after ...
3
votes
1answer
5k views
How do you call an ASHX from JavaScript?
I want to call an ASHX file and pass some query string variables from JavaScript and get the return string into a string in the JavaScript. How would I do this?
The ASHX file is already coded to ...
3
votes
2answers
696 views
How do I convert from axd to ashx?
I'm trying to deploy elmah. For inexplicable reasons, I'm getting an error: .axd files are explicitly forbidden. I've already fixed what I can control (my web.config) and solutions requiring ...
2
votes
1answer
64 views
Getting file from .ashx with a jQuery Post
This question is a following from another question I asked - Passing client data to server to create Excel or CSV File.
I have a client page which builds a JSON object to send to the server, and I ...
2
votes
3answers
83 views
Display Image using ashx Handler
I have the following image in my aspx page
<td>
<asp:Image ID="LargeImage" runat="server" Height="100" Width="100" />"
</td>
In my aspx.cs, assigned a imageurl to this image
...
2
votes
1answer
44 views
Playing a mp3 file using an Embed tag where the source is ashx file and byte array from database
I currently store text to speech mp3 files as varbinary(max) in the database. what I want to do is play those audio files using the embed tag where the source is ashx file that will recieve the id of ...
2
votes
2answers
57 views
Delete uploaded file if it is not moved to another folder
I am developing a commenting system with asp.net. A user can attach an image with "Attach" button and post the comment with "Post" button. Uploading the image starts when the user attaches it. An ASHX ...
2
votes
1answer
61 views
Not well-formed error message in FF
My site just started to behave strange... In FF 8 I get this error (could be after I upgraded my FF, not sure):
Error: not well-formed
Source File: ...
2
votes
3answers
79 views
How to properly use javascript deserialization to convert a json string to a complex object?
I have the following json object that is available in my .ashx handler (var items=):
...
2
votes
3answers
241 views
jQuery.ajax type: Post to an ashx file not being initiated in IE. works fine in FF, Chrome, and Safari
this is my first question to the stack.
jQuery.ajax type: Post to an ashx file not being initiated in IE. works fine in FF, Chrome, and Safari
Code below:
$.ajax({
type: "Post",
url: ...
2
votes
1answer
261 views
Caching ASHX Image Response
I have created an ashx file to generate image thumbnails on the fly. I would like to cache these images client side after they are called the first time.
URL:
...
2
votes
0answers
196 views
Best practice to authenticate an ashx request
I have a Silverlight application from which I have to call a ASHX file, something like this GetFile.ashx?orderId=4
The problem is that I want to allow this call to be made only through the ...
2
votes
1answer
91 views
c# static in abstract superclass will be shared among subclasses?
i'm writing some ashx handlers which are wired to a mock service, and i want them to share the mock service instance. The simplest approach i though was creating a static instance
public class ...
2
votes
5answers
210 views
serve an ashx page when an xml page is requested
I have a .ashx file generating xml for both our rss feed and our sitemap. Our new SEO guy is telling us that the ".ashx" extension is harming us (for example, insisting that the existing ...
2
votes
1answer
317 views
using C#/Json to serialize a struct in a web service
I'm writing a very simple C# HttpHandler (ashx) to use as a web service, and intend to use using Json.Net to serialize a small (4-5 fields) struct across a server boundary.
What are my options for ...
2
votes
1answer
573 views
ashx control returning image, jquery get size on load or .NET OnLoad methods not working
I have an ASHX handler returning an image on page load. I need to add a class to the image dynamically depending on the dimensions of the image. I have tried doing this using the following methods:
...
2
votes
2answers
549 views
ASMX and ASHX Performance Benchmarks
Hi is there a way to measure / monitor the performance of .NET web services (ASMX) and .NET Http Handlers (ASHX)? I would like to see how long it takes to process a SOAP request vs how long it takes ...
2
votes
3answers
603 views
ASHX C# for each loop on POST vars
I have the following piece of code on C#, on an ASHX or Generic Handler file:
public override void ProcessRequest(HttpContext contexto)
{
string destino = contexto.Request["destino"];
string ...
2
votes
2answers
330 views
response.write only working IE for ASP.NET
I'm using uploadify (http://www.uploadify.com/) to upload video to my site then convert them into *.flv using ffmpeg and play preview. But it dosen't fully working with firefox, chrome or safari.
...
2
votes
3answers
3k views
Downloading files using ASP.NET .ashx modules
I have ASP.NET page with an iframe on it for displaying some pdf reports on this page.
When user select the report type from dropdown, I add the needed for report data into the ASP.NET Session and ...
2
votes
1answer
3k views
ASP.NET [Image Handler]
I'm still trying to load my image from database.
But that's not so easy with my skins to understand the shots :
Using Handler
I read this stuff and was on trying to make it but I found only one method ...
2
votes
1answer
1k views
ASP.NET - Display Images and pdf in a GridView
I want to display in an asp:GridView an "Images" column. The idea is to provide a thumbnails of the image with link to real size image. For some rows, this may alternatively be a PDF document. I'd ...
2
votes
2answers
1k views
how to debug ashx file in VSTS?
I am using VSTS 2008 + .Net + C#. I am developing an ASP.Net web application. I have added an generic handler, i.e. .ashx file. How to debug this ashx file in VSTS 2008? I find there is no view in ...
2
votes
3answers
517 views
Return Bitmap to Browser dynamically
I am cropping an image, and wish to return it using a ashx handler. The crop code is as follows:
public static System.Drawing.Image Crop(string img, int width, int height, int x, int y)
{
...
2
votes
2answers
2k views
How did you get ASP.NET to output UTF-16 encoded text?
How did you get ASP.NET to output UTF-16 encoded text?
I serialize an object in .NET which by default is UTF-16 format. Now I want to send the string as an output response to an .ashx request.
I get ...
2
votes
2answers
1k views
Why asynchronous ASHX generated images doesn't always work in IE6?
If you use an WebHandler inheriting IHttpAsyncHandler, you shouldn't notice that under undetermined specific circumstances the browser MS IE6 won't display it, the request will never finish. Is there ...
2
votes
3answers
1k views
Visual Studio ASP.Net expand and collapse issue in ashx generic handlers
I have Visual Studio 2008 Professional and I am having issues with expanding and collapsing method code blocks in ASP.Net Generic Handler pages (.ashx)
I would have thought you could do the same ...
1
vote
1answer
19 views
Set Extension For Handler.ashx
I have a generic handler Image.ashx that crops/resizes images on the fly by reading information from the querystring like Image.ashx?filename=foo.jpg&maxwidth=200&maxheight=300.
Is there a ...
1
vote
2answers
35 views
Win Server 2003, Images and ASHX issue
I am having an issue with my ASP.Net application when it runs in IIS6 (Windows Server 2003) but it runs flawlessly in IIS7 (Windows Server 2008R2). I am using an ASHX to resize images and then display ...
1
vote
1answer
95 views
Google Chrome 16 issues with ASP.NET forms authentication cookie
Hey guys I'm having a problem with Google Chrome 16 on one of the sites I'm supporting that i can't fix couple a days now.
The site is using forms authentication. There is a hyperlink that when ...
1
vote
3answers
34 views
How to properly set sessions in HttpContext?
I am using:
if (string.IsNullOrEmpty(myHttpContext.Request.QueryString["code"]))
{
if (myHttpContext.Session == null || myHttpContext.Session["code"] == null)
{
...
1
vote
1answer
71 views
Dynamically evaluating Javascript from .ashx page
I have written a custom HTTP handler (.ashx) and call it from an .aspx page. I am sending the Javascript code from the .ashx - and the .alert() shows the code. However, the .eval() does not seem to do ...
1
vote
3answers
85 views
Is JQuery caching image?
I'm having problems with a function to load an image. Image is loading only the first time, after that I'm getting the same image. Only the first time goes to photoHandler.ashx.
What happens here? is ...