We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
com.onelogin.saml2.authn.SamlResponse:1221-1225 NodeList AssertionDataNodes = Util.query(dom, "/samlp:Response/saml:EncryptedAssertion/saml:Assertion"); if (encryptedDataNodes.getLength() == 0) { throw new ValidationError("No /samlp:Response/saml:EncryptedAssertion/saml:Assertion element found", ValidationError.MISSING_ENCRYPTED_ELEMENT); } Node assertionNode = AssertionDataNodes.item(0);
NodeList AssertionDataNodes = Util.query(dom, "/samlp:Response/saml:EncryptedAssertion/saml:Assertion"); if (encryptedDataNodes.getLength() == 0) { throw new ValidationError("No /samlp:Response/saml:EncryptedAssertion/saml:Assertion element found", ValidationError.MISSING_ENCRYPTED_ELEMENT); } Node assertionNode = AssertionDataNodes.item(0);
should say
NodeList assertionDataNodes = Util.query(dom, "/samlp:Response/saml:EncryptedAssertion/saml:Assertion"); if (assertionDataNodes.getLength() == 0) { throw new ValidationError("No /samlp:Response/saml:EncryptedAssertion/saml:Assertion element found", ValidationError.MISSING_ENCRYPTED_ELEMENT); } Node assertionNode = assertionDataNodes.item(0); (coding style and logical/copy&paste error)
NodeList assertionDataNodes = Util.query(dom, "/samlp:Response/saml:EncryptedAssertion/saml:Assertion"); if (assertionDataNodes.getLength() == 0) { throw new ValidationError("No /samlp:Response/saml:EncryptedAssertion/saml:Assertion element found", ValidationError.MISSING_ENCRYPTED_ELEMENT); } Node assertionNode = assertionDataNodes.item(0);
The text was updated successfully, but these errors were encountered:
No branches or pull requests
com.onelogin.saml2.authn.SamlResponse:1221-1225
NodeList AssertionDataNodes = Util.query(dom, "/samlp:Response/saml:EncryptedAssertion/saml:Assertion"); if (encryptedDataNodes.getLength() == 0) { throw new ValidationError("No /samlp:Response/saml:EncryptedAssertion/saml:Assertion element found", ValidationError.MISSING_ENCRYPTED_ELEMENT); } Node assertionNode = AssertionDataNodes.item(0);
should say
NodeList assertionDataNodes = Util.query(dom, "/samlp:Response/saml:EncryptedAssertion/saml:Assertion"); if (assertionDataNodes.getLength() == 0) { throw new ValidationError("No /samlp:Response/saml:EncryptedAssertion/saml:Assertion element found", ValidationError.MISSING_ENCRYPTED_ELEMENT); } Node assertionNode = assertionDataNodes.item(0);
(coding style and logical/copy&paste error)
The text was updated successfully, but these errors were encountered: