Skip to content

Commit

Permalink
Skip ReadAndValidateInResponseTo validation (Workaround Idp issue)
Browse files Browse the repository at this point in the history
  • Loading branch information
ThiemeNL committed Aug 14, 2018
1 parent f18bc3c commit 19a715f
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Sustainsys.Saml2/SAML2P/Saml2Response.cs
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,8 @@ public Saml2Response(XmlElement xml, Saml2Id expectedInResponseTo)

id = new Saml2Id(xml.Attributes["ID"].Value);

ReadAndValidateInResponseTo(xml, expectedInResponseTo);
// Temporary skip validation
//ReadAndValidateInResponseTo(xml, expectedInResponseTo);

issueInstant = DateTime.Parse(xml.Attributes["IssueInstant"].Value,
CultureInfo.InvariantCulture, DateTimeStyles.AdjustToUniversal);
Expand Down

0 comments on commit 19a715f

Please sign in to comment.