Hi Cillus,
getSP_URI isn't a Mendix constant but a Java function in saml20.implementation.common.Constants.getSP_URI:
public final String getSP_URI() {
if ( this.SP_CONSUMER_URI == null ) {
this.SP_CONSUMER_URI = Core.getConfiguration().getApplicationRootUrl();
if ( !this.SP_CONSUMER_URI.endsWith("/") )
this.SP_CONSUMER_URI += "/";
}
return this.SP_CONSUMER_URI;
It seems like the ApplicationRootURL is missing in the configuration in the Mendix Service Console under configuration. It is called Public application root URL
I'm getting the same error when running locally in the modeler. Using version 1.9.2 of the saml widget.
What needs to be changed?