A
andy
Hi
I have a website which i have secured using forms authentication. I
have also secured htm, pdf, doc, xls files using the httphandlers
section in the web.config and routing the requests from IIS thru
dotnet.
Now I need to secure a .exe application in a subdir. I have made it so
we have to login, but I cannot get the application to run.... I have
tried using the defaulthttphandler in the web.config but the browser
just says the page is unreachable.
The .exe is a third party product so we cannot change it. Its
basically some sort of cgi app which works fine if we just call it via
the url http:\fred\gateway.exe?someparams (and remove the mapping in
IIS).
Do i need to write my own httphandler to execute the exe and return
the web page. If so has anyone done this and can give an example?
The line in the web.config in the httphandlers section i currently
have is
<add path="*.exe" verb="*" type="System.Web.DefaultHttpHandler"
validate="true" />
Please tell me this can be done or the line above is incorrect.......
Thanks
I have a website which i have secured using forms authentication. I
have also secured htm, pdf, doc, xls files using the httphandlers
section in the web.config and routing the requests from IIS thru
dotnet.
Now I need to secure a .exe application in a subdir. I have made it so
we have to login, but I cannot get the application to run.... I have
tried using the defaulthttphandler in the web.config but the browser
just says the page is unreachable.
The .exe is a third party product so we cannot change it. Its
basically some sort of cgi app which works fine if we just call it via
the url http:\fred\gateway.exe?someparams (and remove the mapping in
IIS).
Do i need to write my own httphandler to execute the exe and return
the web page. If so has anyone done this and can give an example?
The line in the web.config in the httphandlers section i currently
have is
<add path="*.exe" verb="*" type="System.Web.DefaultHttpHandler"
validate="true" />
Please tell me this can be done or the line above is incorrect.......
Thanks