I'm using ADFS as STS to access an external SAML Idp, and I need to force authentication to happen in certain use cases. This seems to be possible only through modified IdpInitiatedSignOnPage as suggested in
AD FS 2.0 Sign-In Pages Customization Overview (http://msdn.microsoft.com/en-us/library/ee895361.aspx)
SignOnRequestParameters parameters = new SignOnRequestParameters();
// Require the user to authenticate.
parameters.ForceAuthentication = true;
My Question is, how do I get this to work when using the wsfederation? Specifying wfresh="0" seems to have no effect at all? What am I missing? Is this use case even supported?