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 9b42495 commit 10dce79Copy full SHA for 10dce79
docs/manual/src/docs/asciidoc/_includes/servlet/saml2/saml2-login.adoc
@@ -223,13 +223,15 @@ static {
223
224
public Element marshall(XMLObject object, Document document) throws MarshallingException {
225
configureAuthnRequest((AuthnRequest) object);
226
- return super.marshall(object, element);
+ return super.marshall(object, document);
227
}
228
229
private void configureAuthnRequest(AuthnRequest authnRequest) {
230
authnRequest.setForceAuthN(true);
231
232
233
+
234
+ factory.getMarshallerFactory().registerMarshaller(AuthnRequest.DEFAULT_ELEMENT_NAME, marshaller);
235
});
236
237
----
0 commit comments