We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e79141a commit 27e6743Copy full SHA for 27e6743
docs/manual/src/docs/asciidoc/_includes/servlet/saml2/saml2-login.adoc
@@ -219,13 +219,15 @@ static {
219
220
public Element marshall(XMLObject object, Document document) throws MarshallingException {
221
configureAuthnRequest((AuthnRequest) object);
222
- return super.marshall(object, element);
+ return super.marshall(object, document);
223
}
224
225
private void configureAuthnRequest(AuthnRequest authnRequest) {
226
authnRequest.setForceAuthN(true);
227
228
229
+
230
+ factory.getMarshallerFactory().registerMarshaller(AuthnRequest.DEFAULT_ELEMENT_NAME, marshaller);
231
});
232
233
----
0 commit comments