GetSignedAssertions() not working

0
We were using the version 6.8.40.4155 and the function GetSignedAssertions() was working alright. Now we upgraded the library to use the version 7.0.40.226 and found that this method definition has been changed to: public Assertion[] GetSignedAssertions(X509Certificate2 x509Certificate); Now in order to validate the Asserting and to keep on using the same method 1) I passed the IdentityProviderCertificate to this method, but it did not work. X509Certificate2 clientCert = new X509Certificate2(ssoConfigModel.IdentityProviderCertificateData); Assertion[] signedAssertions = samlResponse.GetSignedAssertions(clientCert); 2) I changed the process to call the methods in the below order and this is also not working if (samlAssertion.IsSigned()) { X509Certificate2 clientCert = new X509Certificate2(ssoConfigModel.IdentityProviderCertificateData); if (samlAssertion.Validate(clientCert)) { isValidAssertion = true; } } Can you please help to resolve the issues.
edited 1/11/2019 8:14:43 AM
asked 1/11/2019 8:13:53 AM
add a comment

2 Answers

0
Will have to check if I can send you the xml, but this is happening with all test saml responses that I have tried. Your documentation\samples do not have any examples of this method. It will be good if you can provide a working sample of how to use this method.
 
answered 1/14/2019 9:04:09 AM
  sorry for the inconvenience. Plz send an email to support@componentpro.com to get a hotfix DLL. sysadmin 1/14/2019 11:44:25 AM
  I sent the email 15 days back but have not received any update. Suresh Kanna 1/31/2019 1:43:36 PM
add a comment
0
Plz send us the XML to reproduce your issue to support@componentpro.com
 
answered 1/11/2019 8:22:02 AM
add a comment

Your Answer

Not the answer you're looking for? Browse other questions tagged saml asp.net mvc or ask your own question.