[java-identity-provider] branch main updated: IDP-2095 - Spring WebFlow versioned schema URL is now a 404
Scott Cantor
cantor.2 at osu.edu
Tue Apr 25 18:32:57 UTC 2023
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=af04dcedfd3b40bf17b355f3a343ac2a9aa2a116
The following commit(s) were added to refs/heads/main by this push:
new af04dcedf IDP-2095 - Spring WebFlow versioned schema URL is now a 404
af04dcedf is described below
commit af04dcedfd3b40bf17b355f3a343ac2a9aa2a116
Author: Scott Cantor <cantor.2 at osu.edu>
AuthorDate: Tue Apr 25 14:32:54 2023 -0400
IDP-2095 - Spring WebFlow versioned schema URL is now a 404
https://shibboleth.atlassian.net/browse/IDP-2095
Update CAS flows.
---
.../main/resources/net/shibboleth/idp/flows/cas/cas-abstract-flow.xml | 2 +-
.../src/main/resources/net/shibboleth/idp/flows/cas/login-flow.xml | 2 +-
.../src/main/resources/net/shibboleth/idp/flows/cas/proxy-flow.xml | 2 +-
.../main/resources/net/shibboleth/idp/flows/cas/proxyValidate-flow.xml | 2 +-
.../main/resources/net/shibboleth/idp/flows/cas/samlValidate-flow.xml | 2 +-
.../resources/net/shibboleth/idp/flows/cas/serviceValidate-flow.xml | 2 +-
.../resources/net/shibboleth/idp/flows/cas/validate-abstract-flow.xml | 2 +-
.../src/main/resources/net/shibboleth/idp/flows/cas/validate-flow.xml | 2 +-
8 files changed, 8 insertions(+), 8 deletions(-)
diff --git a/idp-conf-impl/src/main/resources/net/shibboleth/idp/flows/cas/cas-abstract-flow.xml b/idp-conf-impl/src/main/resources/net/shibboleth/idp/flows/cas/cas-abstract-flow.xml
index 1b7b510ff..fa3957f03 100644
--- a/idp-conf-impl/src/main/resources/net/shibboleth/idp/flows/cas/cas-abstract-flow.xml
+++ b/idp-conf-impl/src/main/resources/net/shibboleth/idp/flows/cas/cas-abstract-flow.xml
@@ -2,7 +2,7 @@
<flow xmlns="http://www.springframework.org/schema/webflow"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="
- http://www.springframework.org/schema/webflow http://www.springframework.org/schema/webflow/spring-webflow-2.0.xsd"
+ http://www.springframework.org/schema/webflow http://www.springframework.org/schema/webflow/spring-webflow.xsd"
abstract="true">
<!-- Base flow for all CAS protocol interactions -->
diff --git a/idp-conf-impl/src/main/resources/net/shibboleth/idp/flows/cas/login-flow.xml b/idp-conf-impl/src/main/resources/net/shibboleth/idp/flows/cas/login-flow.xml
index d6869b20d..84fcd9b56 100644
--- a/idp-conf-impl/src/main/resources/net/shibboleth/idp/flows/cas/login-flow.xml
+++ b/idp-conf-impl/src/main/resources/net/shibboleth/idp/flows/cas/login-flow.xml
@@ -2,7 +2,7 @@
<flow xmlns="http://www.springframework.org/schema/webflow"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="
- http://www.springframework.org/schema/webflow http://www.springframework.org/schema/webflow/spring-webflow-2.0.xsd"
+ http://www.springframework.org/schema/webflow http://www.springframework.org/schema/webflow/spring-webflow.xsd"
parent="cas.abstract">
<action-state id="InitializeLogin">
diff --git a/idp-conf-impl/src/main/resources/net/shibboleth/idp/flows/cas/proxy-flow.xml b/idp-conf-impl/src/main/resources/net/shibboleth/idp/flows/cas/proxy-flow.xml
index 710170bea..700a25663 100644
--- a/idp-conf-impl/src/main/resources/net/shibboleth/idp/flows/cas/proxy-flow.xml
+++ b/idp-conf-impl/src/main/resources/net/shibboleth/idp/flows/cas/proxy-flow.xml
@@ -2,7 +2,7 @@
<flow xmlns="http://www.springframework.org/schema/webflow"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="
- http://www.springframework.org/schema/webflow http://www.springframework.org/schema/webflow/spring-webflow-2.0.xsd"
+ http://www.springframework.org/schema/webflow http://www.springframework.org/schema/webflow/spring-webflow.xsd"
parent="cas.abstract">
<on-start>
diff --git a/idp-conf-impl/src/main/resources/net/shibboleth/idp/flows/cas/proxyValidate-flow.xml b/idp-conf-impl/src/main/resources/net/shibboleth/idp/flows/cas/proxyValidate-flow.xml
index 8ad5cf82e..6081de06c 100644
--- a/idp-conf-impl/src/main/resources/net/shibboleth/idp/flows/cas/proxyValidate-flow.xml
+++ b/idp-conf-impl/src/main/resources/net/shibboleth/idp/flows/cas/proxyValidate-flow.xml
@@ -2,7 +2,7 @@
<flow xmlns="http://www.springframework.org/schema/webflow"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="
- http://www.springframework.org/schema/webflow http://www.springframework.org/schema/webflow/spring-webflow-2.0.xsd"
+ http://www.springframework.org/schema/webflow http://www.springframework.org/schema/webflow/spring-webflow.xsd"
parent="cas.abstractValidate" >
<!-- Bootstrap action has to be at the "top" of the flow after this flow prepends itself to parent. -->
diff --git a/idp-conf-impl/src/main/resources/net/shibboleth/idp/flows/cas/samlValidate-flow.xml b/idp-conf-impl/src/main/resources/net/shibboleth/idp/flows/cas/samlValidate-flow.xml
index 80257bb95..2626772ac 100644
--- a/idp-conf-impl/src/main/resources/net/shibboleth/idp/flows/cas/samlValidate-flow.xml
+++ b/idp-conf-impl/src/main/resources/net/shibboleth/idp/flows/cas/samlValidate-flow.xml
@@ -2,7 +2,7 @@
<flow xmlns="http://www.springframework.org/schema/webflow"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="
- http://www.springframework.org/schema/webflow http://www.springframework.org/schema/webflow/spring-webflow-2.0.xsd"
+ http://www.springframework.org/schema/webflow http://www.springframework.org/schema/webflow/spring-webflow.xsd"
parent="cas.abstractValidate" >
<!-- Bootstrap action has to be at the "top" of the flow after this flow prepends itself to parent. -->
diff --git a/idp-conf-impl/src/main/resources/net/shibboleth/idp/flows/cas/serviceValidate-flow.xml b/idp-conf-impl/src/main/resources/net/shibboleth/idp/flows/cas/serviceValidate-flow.xml
index abd7f4de5..58e0508ad 100644
--- a/idp-conf-impl/src/main/resources/net/shibboleth/idp/flows/cas/serviceValidate-flow.xml
+++ b/idp-conf-impl/src/main/resources/net/shibboleth/idp/flows/cas/serviceValidate-flow.xml
@@ -2,7 +2,7 @@
<flow xmlns="http://www.springframework.org/schema/webflow"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="
- http://www.springframework.org/schema/webflow http://www.springframework.org/schema/webflow/spring-webflow-2.0.xsd"
+ http://www.springframework.org/schema/webflow http://www.springframework.org/schema/webflow/spring-webflow.xsd"
parent="cas.abstractValidate">
<!-- Bootstrap action has to be at the "top" of the flow after this flow prepends itself to parent. -->
diff --git a/idp-conf-impl/src/main/resources/net/shibboleth/idp/flows/cas/validate-abstract-flow.xml b/idp-conf-impl/src/main/resources/net/shibboleth/idp/flows/cas/validate-abstract-flow.xml
index 35ab9e993..4abf2339c 100644
--- a/idp-conf-impl/src/main/resources/net/shibboleth/idp/flows/cas/validate-abstract-flow.xml
+++ b/idp-conf-impl/src/main/resources/net/shibboleth/idp/flows/cas/validate-abstract-flow.xml
@@ -2,7 +2,7 @@
<flow xmlns="http://www.springframework.org/schema/webflow"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="
- http://www.springframework.org/schema/webflow http://www.springframework.org/schema/webflow/spring-webflow-2.0.xsd"
+ http://www.springframework.org/schema/webflow http://www.springframework.org/schema/webflow/spring-webflow.xsd"
abstract="true"
parent="cas.abstract">
diff --git a/idp-conf-impl/src/main/resources/net/shibboleth/idp/flows/cas/validate-flow.xml b/idp-conf-impl/src/main/resources/net/shibboleth/idp/flows/cas/validate-flow.xml
index c5b6a8c33..d0f1aca10 100644
--- a/idp-conf-impl/src/main/resources/net/shibboleth/idp/flows/cas/validate-flow.xml
+++ b/idp-conf-impl/src/main/resources/net/shibboleth/idp/flows/cas/validate-flow.xml
@@ -2,7 +2,7 @@
<flow xmlns="http://www.springframework.org/schema/webflow"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="
- http://www.springframework.org/schema/webflow http://www.springframework.org/schema/webflow/spring-webflow-2.0.xsd"
+ http://www.springframework.org/schema/webflow http://www.springframework.org/schema/webflow/spring-webflow.xsd"
parent="cas.abstractValidate">
<!-- Bootstrap action has to be at the "top" of the flow after this flow prepends itself to parent. -->
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
More information about the commits
mailing list