> I have compared communication between browser and Fediz with a similar > communication during authentication to Fediz Sample SP application and found > out following: > - SharePoint does not sent the "wreply" request attribute in a redirection to > Fediz IDP.
I have solved this first issue by enabling a use of the "wreply" parameter in SharePoint - use "-UseWReply $true" as described in http://technet.microsoft.com/en-us/library/ff607628%28v=office.14%29.aspx. In my case I run following commands in the SharePoint Management Script to change the existing configuration: $idp = Get-SPTrustedIdentityTokenIssuer "My-Company (RealmA) Federation" $idp.UseWReplyParameter = $true $idp.Update() The second issue persists (error processing response due to element 'AppliesTo' with namespace 'http://www.w3.org/ns/ws-policy' is unrecognized).
