-
Posted to
IIS7 - URL Rewrite Module
by
Ben Amada
on
10-19-2009, 6:26 AM
Thanks Anil. It sounds to me that this is an area the IIS Rewrite Module could improve on. The goal being to preserve the original URL components like I'm trying to do, while ensuring a properly encoded value is passed on from the rewrite module so the server side engine receives the same encoding it would normally receive if the ...
-
Posted to
IIS7 - URL Rewrite Module
by
Ben Amada
on
10-14-2009, 5:48 AM
Thank you Anil, the {UNENCODED_URL} server-variable works. That's much better!
However, I don't see how using UNENCODED_URL would be any more dangerous than when not using URL Rewrite. First, ASP.NET by default checks for "dangerous" input. But, even without that check, when not using URL Rewrite, ASP.NET is ...
-
Posted to
IIS7 - URL Rewrite Module
by
Ben Amada
on
10-12-2009, 3:17 AM
I have a rewrite rule setup (bottom of msg). It rewrites URLs like this:
/search/some+text
Into:
/search.aspx?q=some+text
It's working, however, when there is a URL encoded ampersand in the text, like this:
/search/r%26d
It appears the Url Rewrite Module is decoding the URL encoded ampersand (%26) during its rewrite. So on my ...
-
Posted to
IIS7 - Configuration & Scripting
by
Ben Amada
on
02-22-2009, 1:17 AM
Hi Anil, thanks for the response.
In my scenario, I have some .NET handlers I want to register in the web.config file. Since they are .NET handlers, I presume they are 'managed' handlers.
If I'm running the site in integrated mode, in which scenario would the integratedMode pre-condition be necessary for managed handlers? ...
-
Posted to
IIS7 - Configuration & Scripting
by
Ben Amada
on
02-21-2009, 5:24 PM
I was reading that when running in classic mode, <handlers> and <modules> are ignored. Instead, the <httpHandlers> and <httpModules> sections are used.
If this is true, would specifying a preCondition of integrated for <handlers> or <modules> make any difference since these handlers/modules will only be ...
-
Posted to
IIS 7 - ASP.NET Administration
by
Ben Amada
on
07-12-2007, 3:53 PM
Hi Steve. I'm fairly certain that this error is not a problem with IIS, but more a flaw with Visual Studio -- perhaps an untested side effect from the hotfix. I noticed a comment from Brian Kuhn on ScottGu's blog at the link below (same link you gave me) who appears to have run into the same ...
-
Posted to
IIS 7 - ASP.NET Administration
by
Ben Amada
on
07-07-2007, 6:01 PM
Hi Steve,
Thank you, the hotfix solved the problem. Actually, I've ran into a new problem after applying the hotfix which I have a workaround for, but thought I would just pass it by you in case any ideas come to mind :-)
In my VS 2005 project settings, I've had the "Start Action" on the "Web" tab set ...
-
Posted to
IIS 7 - ASP.NET Administration
by
Ben Amada
on
07-06-2007, 7:32 PM
Hi. I'm using VS 2005 SP1 on Vista / IIS7. I've setup my application in IIS7 to use the new Integrated pipeline mode. However, when starting the application in VS2005 with F5, I get the following error message:
"Unable to start debugging on the web server. An authentication error occurred while communicating with ...