Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
One possibility is that your binding does not contains required claim types. In your client binding, make sure you have at least one required claims:
WSFederationHttpBinding
binding = new WSFederationHttpBinding( WSFederationHttpSecurityMode.Message );
// the required claim sections
binding.Security.Message.ClaimTypeRequirements.Add( new ClaimTypeRequirement( ClaimTypes.Name ) );
// the optional claim sections
binding.Security.Message.ClaimTypeRequirements.Add(
new ClaimTypeRequirement( ClaimTypes.Gender, true ) );
Hope this helps