On-Prim Mendix Application - SAML module

0
While setting up SSO in mendix, the SAML metadata (https://----appurl-----/sso/metadata/FederationMetadata/2007-06/FederationMetadata.xml) shows <md:AssertionConsumerService Binding="urn:oasis:names:tc:SAML:2.0:bindings:HTTP-POST" Location="http://---app url--/SSO/assertion" index="1"/> Location as http://---app url--/SSO/assertion . Is there a way to convert that to an https url?
asked
2 answers
0

See the forum question here: https://forum.mendix.com/link/questions/85617

Regards,

Ronald

 

answered
0

I am not sure If I get it right. however I am trying to understand how can I change following values in metadata – saml config. need to change http to https

Application is already running on https protocol!

 

<md:SingleLogoutService Binding="urn:oasis:names:tc:SAML:2.0:bindings:HTTP-Redirect" Location="http://-/SSO/logout"/>

            <md:SingleLogoutService Binding="urn:oasis:names:tc:SAML:2.0:bindings:HTTP-POST" Location="http://-/SSO/logout"/>

            <md:AssertionConsumerService Binding="urn:oasis:names:tc:SAML:2.0:bindings:HTTP-POST" Location="http://-/SSO/assertion" index="1"/>

            <md:AssertionConsumerService Binding="urn:oasis:names:tc:SAML:2.0:bindings:HTTP-Artifact" Location="http://-/SSO/assertion" index="2"/>

answered