vote up 1 vote down star

I have an ASP.NET website deployed on IIS 6. I have several folders in my app containing handlers like log.ashx, default.ashx and so on.

I have default document configured in IIS, so that I can type www.mydomain.com/tools in the browser, and I will get the /tools/default.ashx.

IIS gives me 404 all the time, which is my problem. I also have the aspnet_isapi.dll configured as a wildcard handler.

Does anyone know how to fix this?

flag

72% accept rate

closed as no longer relevant by MartinHN Dec 8 '08 at 14:18

2 Answers

vote up 0 vote down

Where is the default specified? In "tools"?

Do you get any difference between ".../tools" and ".../tools/" ?

link|flag
No difference. I tried to remove the ASP.NET Isapi wildcard handler, and it still returns 404. I ended up deleting the entire website in IIS, and re-creating it which solved the problem. – MartinHN Dec 8 '08 at 14:16
So just IIS with a grudge, then ;-p – Marc Gravell Dec 8 '08 at 20:26
vote up 0 vote down

Setting the default document in IIS just tells IIS to look for a document with that name in the requested folder, so if /tools/default.ashx doesn't exist on the server, then you will indeed get a 404.

You need to declare handlers in the web.config - and this article http://dotnetperls.com/Content/ASHX-Handler.aspx runs you through how you could set something similar up using the urlMappings part of the web.config.

link|flag
Do you really think that I post a question here without knowing that default.ashx actually exists in the folder? :) – MartinHN Dec 8 '08 at 14:14
To be honest, no, I did misread that part of your question. However, I created a simple site, added default.ashx to the list of documents in IIS, and created a folder called tools with a "GeneralHandler" called default.ashx in it, and that worked as expected, calling /tools displayed handler :( – Zhaph - Ben Duguid Dec 8 '08 at 14:39

Not the answer you're looking for? Browse other questions tagged or ask your own question.