N
Nekit
Hello all.
I have created an httpHandler to redirect requests to some files from
other places. For this handler to be called for all files I've added
Application mapping in the IIS with Extension "*" so that request of
any file goes through aspnet_isapi.dll. Then in web.config I specify
when to call the handler. This part seem to be working ok.
The problem comes up when I specify NO file in my request. e.g. if I
browse to http://myserver/myapp. At this point, since I did not
specify any filename, IIS should go and pick from the list of Default
Documents. But since I redirected all requests to aspnet_isapi.dll,
IIS does not do it... And I get 404 (from aspnet_isapi.dll).
So the question is... How to specify list of Default Document for
aspnet_isapi.dll?
Thanks,
MY
I have created an httpHandler to redirect requests to some files from
other places. For this handler to be called for all files I've added
Application mapping in the IIS with Extension "*" so that request of
any file goes through aspnet_isapi.dll. Then in web.config I specify
when to call the handler. This part seem to be working ok.
The problem comes up when I specify NO file in my request. e.g. if I
browse to http://myserver/myapp. At this point, since I did not
specify any filename, IIS should go and pick from the list of Default
Documents. But since I redirected all requests to aspnet_isapi.dll,
IIS does not do it... And I get 404 (from aspnet_isapi.dll).
So the question is... How to specify list of Default Document for
aspnet_isapi.dll?
Thanks,
MY