[java-identity-provider] branch main updated: IDP-2411 - Generated metadata has wrong path in SingleLogoutService

Scott Cantor cantor.2 at osu.edu
Mon Nov 10 15:31:10 UTC 2025


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:
https://git.shibboleth.net/view/?p=java-identity-provider.git;a=commit;h=378ebcb28e3f8fc25dcf91546dec05569e716e03

The following commit(s) were added to refs/heads/main by this push:
     new 378ebcb28 IDP-2411 - Generated metadata has wrong path in SingleLogoutService
378ebcb28 is described below

commit 378ebcb28e3f8fc25dcf91546dec05569e716e03
Author: Scott Cantor <cantor.2 at osu.edu>
AuthorDate: Mon Nov 10 10:31:07 2025 -0500

    IDP-2411 - Generated metadata has wrong path in SingleLogoutService
    
    https://shibboleth.atlassian.net/browse/IDP-2411
    
    Fixed while also adjusting the default bindings supported.
---
 .../shibboleth/idp/installer/impl/InstalledMetadataParameters.java   | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

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 2448c98ad..8e5f85747 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
@@ -96,8 +96,9 @@ public class InstalledMetadataParameters extends AbstractInitializableComponent
      * Static settings.
      */
     /** logout services. */
-    @Nonnull private final List<Pair<String, String>> logoutServices = CollectionSupport.singletonList(
-            new Pair<>("SOAP/","/idp/profile/SAML2/SOAP/ArtifactResolution"));
+    @Nonnull private final List<Pair<String, String>> logoutServices = CollectionSupport.listOf(
+            new Pair<>("Redirect/","/idp/profile/SAML2/Redirect/SLO"),
+            new Pair<>("POST/","/idp/profile/SAML2/POST/SLO"));
 
     /** sso services. */
     @Nonnull private final List<Pair<String, String>> ssoServices = CollectionSupport.listOf(

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


More information about the commits mailing list