up vote 0 down vote favorite
share [g+] share [fb]

I have IIS 7.0 on my development machine and IIS 6.0 on my server. On my development machine I was able to set a handler map on a directory within my site called /ViewHtml/ and I mapped it to asp.net. In my global.asax I check the request sent to asp.net for /ViewHtml/ and I serve the appropriate html file(html version of a Doc, Power Point, or Excel file) located outside this apps virtual directory. I am doing it this way because all files are permission protected, we didn't want to put these files in are database due to scalability, and I need to hide the path to these file on the server. This all works in IIS 7.0 exactly how I would like it to. Although I have not been able to get my IIS 6.0 server configured to map all requests to that directory to asp.net.

Any ideas? Thanks Guys?

link|improve this question
feedback

2 Answers

up vote 1 down vote accepted

I set up a web application using the same configuration you're using and I'm also getting the 404. I don't know why it works in IIS 7, but here's what I had to do to fix it.

Create a class that implements the System.Web.IHttpHandler class. move the the code from Application_BeginRequest to your implementation of IHttpHandler.ProcessRequest.

Now you just have to register your HTTP handler with ASP.NET. To do so add an entry in your Web.config at /configuration/system.web/httphandlers.

Web.config Example:

...
<httpHandlers>
    <clear />
    <add verb="*" path="*" type="namespace.classname, assemblyname" />
</httpHandlers>
...

That entry is telling ASP.NET to handle HTTP requests with any extension and any HTTP method by running the code in your HTTP hander. Note that I'm also clearing all the previously definded handlers (defined in the machine's web.config).

Note that you will still need the Application Mapping configured in IIS.

link|improve this answer
Thanks again Matt. This got it all working for me. – nmullens Jul 13 '09 at 21:04
feedback

If I understand the problem correctly, it sounds like you need add a "Wildcard Application Mapping" for your virtual directory. In other words, you want to forward all requests to any file extension to ASP.NET's ISAPI extension.

To do so, open the properties of your virtual directory. On the Virtual Directory tab (Home Directory tab if it's a web site), click the Configuration... button. Click the Insert... button next to the bottom list box in the dialog that shows up. In this dialog, choose "%SYSTEMROOT%\Microsoft.NET\Framework\v2.0.50727\aspnet_isapi.dll" as the executable and make sure to un-check "Verify that file exists" checkbox, since the files to be requested don't live in your virtual directory.

I hope this helps!

link|improve this answer
Thanks Matt. I have tried this but I still get a 404 error when I try and show any pages through /ViewHtml/. /ViewHtml/ is a virtual directory in my projects virtual directory, I added a wildcard application map from /ViewHtml/ to aspnet_isapi.dll (asp.net) and unchecked verify that file exists , then restarted IIS. Did I miss something? – nmullens Jun 25 '09 at 19:33
It sounds like you have everything right. Do you know if the code in your Global.asax file is running? Can you post a sample of the code in your Global.asax? – Matt Jun 25 '09 at 19:55
Thanks again for the quick response Matt. I can post the code if you think it will help. Because of the 404 error I was under the impression that IIS is still handling the request and not mapping it to Asp.net where the golbal would handle it in Application_BeginRequest function. – nmullens Jun 25 '09 at 20:16
feedback

Your Answer

 
or
required, but never shown