You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'd like to have a way to set the value of the saml2:Issuer in saml2p:AuthnRequest (the IdP I'm using requires it to have a specific value). However, it is currently being set the entityId and there is no way (at least, that I can see, to change it.)
The text was updated successfully, but these errors were encountered:
candrews
changed the title
saml2:Issuer wrong in AuthnRequest
Allow setting the value of saml2:Issuer
Apr 13, 2018
@Bean
public WebSSOProfile myWebSSOProfile(){
return new DSLWebSSOProfileImpl() {
@Override
protected Issuer getIssuer(String localEntityId) {
return super.getIssuer("SOME VALUE HERE");
}
@Override
public void afterPropertiesSet() throws Exception {
// this override can be removed after https://github.com/ulisesbocchio/spring-boot-security-saml/pull/58
}
};
}
I'd like to have a way to set the value of the
saml2:Issuer
insaml2p:AuthnRequest
(the IdP I'm using requires it to have a specific value). However, it is currently being set the entityId and there is no way (at least, that I can see, to change it.)The text was updated successfully, but these errors were encountered: