I have an ASP.NET website running in dev-fabric in Visual Studio (azure project) and I use ACS and WIF. My authentication process does not work, because after logging in I get the following:
A potentially dangerous Request.Form value was detected from the client (wresult="<t:RequestSecurityTo...").
The documentation says what I need to add
<pages validateRequest="false" />
and
<httpRuntime requestValidationMode="2.0" />
And I did - but I still get the error. I also added validateRequest = "false" at the page level. But nada - still the same mistakes.
These steps seemed to fix the problem for other posters - maybe this is due to running in dev-fabric?
source share