To to enable your custom extension you should add extension mapping into the
IIS Web application settings.
Use Internet Services MMC snap-in and map *.MyExtension to aspnet_isapi.dll.
You could use existing *.aspx mapping as an example.
--
Andriy Gnennyy
pulsar2003@{no-spam}email.ru (Please remove {no-spam} for reply)
X-Unity Test Studio
http://x-unity.miik.com.ua/teststudio.aspx
[quoted text, click to view] "Henrik de Jong" <hj.de.jong@planet.nl> wrote in message
news:eWicMErhEHA.1888@TK2MSFTNGP10.phx.gbl...
> I've .net 1.1 installed on a XP-Prof computer.
>
> My problem is that I can't use own extension ie file.myextensions with
> my httpHandler. The web.config contains the following code:
>
> <configuration>
> <system.web>
> <httpHandlers>
> <add verb="*" path="*.aspx"
> type="MSDNHandlers.CSHandler,CSHandler" validate="true" />
> <add verb="*" path="*.MyExtension"
> type="MSDNHandlers.CSHandler,CSHandler" validate="false" />
> </httpHandlers>
> </system.web>
> </configuration>
>
> When I use the following url: http://localhost/asp0107/test.MyExtension
> it results in a page not found error.
>
> grtz,
> Henrik