I need to be able to have a default file in IIS5.0 that allows me to send parameters.
For instance: www.server.com/Test?bla=bla
instead of:
www.server.com/Test/file.asmx?bla=b la
When I set the default file for www.server.com/Test to file.asmx I get "Method not allowed" errors. Though, when I type out the full URI it will work fine.
Additionally, I need a similar thing. I need all requests to www.server.com/test2 to use the non-existent default file of file.cdsproxy. This way my speciall dll for the cdsproxy extension will fire. Though, It looks like IIS tests for mappings Before it adds the default file to the requested URI?
For instance: www.server.com/Test?bla=bla
instead of:
www.server.com/Test/file.asmx?bla=b la
When I set the default file for www.server.com/Test to file.asmx I get "Method not allowed" errors. Though, when I type out the full URI it will work fine.
Additionally, I need a similar thing. I need all requests to www.server.com/test2 to use the non-existent default file of file.cdsproxy. This way my speciall dll for the cdsproxy extension will fire. Though, It looks like IIS tests for mappings Before it adds the default file to the requested URI?
Comment