Does anyone have any problems adding another extention to IIS5 and
implementing IHttpHandler?
I have tried going through two examples which show how to add a .rss and a
.text extension to IIS (Home Directory, Configuration, etc) but when I do
that, I get a 404 error. Do I have to do anything else? Can anyone else
suggest a potential problem I'm missing? Like the extension
should/shouldn't have the period on the extension? The other have it, so I
assume it's supposed to, but it's not working so I'm obviously missing
something.
I am able to implement the IHttpHandler and the proper System.web entries.
<httpHandlers>
<add verb="*" path="*.rss" type="PCHenry.RssLib.RssHandler, PCHenry" />
<add verb="*" path="Salman/*.aspx" type="PCHenry.MyHttpHandler,PCHenry" />
<add verb="*" path="Salman/*.text" type="PCHenry.MyHttpHandler,PCHenry" />
</httpHandlers>
And I can get the middle URL to work, but it's the others I'm having a
proble with. Thanks.