[java-identity-provider] branch main updated: IDP-2031 - Improper SAML2 HTTP-POST Location URL, missing leading slash

Scott Cantor cantor.2 at osu.edu
Mon Jul 29 16:30:49 UTC 2024


This is an automated email from the git hooks/post-receive script.

scantor pushed a commit to branch main
in repository java-identity-provider.

View the commit online:
http://git.shibboleth.net/view/?p=java-identity-provider.git;a=commit;h=87e4e5e2f568693e79e919b29792da4283426904

The following commit(s) were added to refs/heads/main by this push:
     new 87e4e5e2f IDP-2031 - Improper SAML2 HTTP-POST Location URL, missing leading slash
87e4e5e2f is described below

commit 87e4e5e2f568693e79e919b29792da4283426904
Author: Scott Cantor <cantor.2 at osu.edu>
AuthorDate: Mon Jul 29 12:30:15 2024 -0400

    IDP-2031 - Improper SAML2 HTTP-POST Location URL, missing leading slash
    
    https://shibboleth.atlassian.net/browse/IDP-2301
---
 .../net/shibboleth/idp/installer/impl/InstalledMetadataParameters.java  | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/idp-installer/src/main/java/net/shibboleth/idp/installer/impl/InstalledMetadataParameters.java b/idp-installer/src/main/java/net/shibboleth/idp/installer/impl/InstalledMetadataParameters.java
index 883690e65..2448c98ad 100644
--- a/idp-installer/src/main/java/net/shibboleth/idp/installer/impl/InstalledMetadataParameters.java
+++ b/idp-installer/src/main/java/net/shibboleth/idp/installer/impl/InstalledMetadataParameters.java
@@ -103,7 +103,7 @@ public class InstalledMetadataParameters extends AbstractInitializableComponent
     @Nonnull private final List<Pair<String, String>> ssoServices = CollectionSupport.listOf(
             new Pair<>("SimpleSign/","/idp/profile/SAML2/POST-SimpleSign/SSO"),
             new Pair<>("Redirect/","/idp/profile/SAML2/Redirect/SSO"),
-            new Pair<>("POST/","idp/profile/SAML2/POST/SSO"));
+            new Pair<>("POST/","/idp/profile/SAML2/POST/SSO"));
 
     /** artifact services. */
     @Nonnull private final List<Pair<String, String>> artifactServices = CollectionSupport.emptyList();

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the commits mailing list