I have a custom IHttpHandler which is used by thick clients to download files using a url such as
http://url.ashx?id=123&version=456
the code handler basically ends with
context.Response.WriteFile(myLocalServerPath);
Is it possible to replace this using the typical asp.net mvc controller pattern ?