diff --git a/config/src/main/resources/org/springframework/security/config/spring-security-3.0.rnc b/config/src/main/resources/org/springframework/security/config/spring-security-3.0.rnc index 2443d4d791..edcd6906d8 100644 --- a/config/src/main/resources/org/springframework/security/config/spring-security-3.0.rnc +++ b/config/src/main/resources/org/springframework/security/config/spring-security-3.0.rnc @@ -247,7 +247,7 @@ protect-pointcut.attlist &= http = ## Container element for HTTP security configuration - element http {http.attlist, (intercept-url+ & access-denied-handler? & form-login? & openid-login? & x509? & http-basic? & logout? & concurrent-session-control? & remember-me? & anonymous? & port-mappings & custom-filter*) } + element http {http.attlist, (intercept-url+ & access-denied-handler? & form-login? & openid-login? & x509? & http-basic? & logout? & concurrent-session-control? & remember-me? & anonymous? & port-mappings & custom-filter* & request-cache?) } http.attlist &= ## Automatically registers a login form, BASIC authentication, anonymous authentication, logout services, remember-me and servlet-api-integration. If set to "true", all of these capabilities are added (although you can still customize the configuration of each by providing the respective element). If unspecified, defaults to "false". attribute auto-config {boolean}? @@ -334,6 +334,10 @@ logout.attlist &= logout.attlist &= ## Specifies whether a logout also causes HttpSession invalidation, which is generally desirable. If unspecified, defaults to true. attribute invalidate-session {boolean}? + +request-cache = + ## Allow the RequestCache used for saving requests during the login process to be set + element request-cache {ref} form-login = ## Sets up a form login configuration for authentication with a username and password diff --git a/config/src/main/resources/org/springframework/security/config/spring-security-3.0.xsd b/config/src/main/resources/org/springframework/security/config/spring-security-3.0.xsd index 0f7a9bbea1..6aacdfe9f6 100644 --- a/config/src/main/resources/org/springframework/security/config/spring-security-3.0.xsd +++ b/config/src/main/resources/org/springframework/security/config/spring-security-3.0.xsd @@ -826,6 +826,7 @@ + @@ -1053,6 +1054,15 @@ + + + Allow the RequestCache used for saving requests during the login process + to be set + + + + + diff --git a/pom.xml b/pom.xml index b3901e7c21..e27b86f675 100644 --- a/pom.xml +++ b/pom.xml @@ -17,7 +17,6 @@ openid ntlm taglibs - portlet aspects samples diff --git a/samples/cas/server/pom.xml b/samples/cas/server/pom.xml index d59ebd422e..dbe1735bc7 100644 --- a/samples/cas/server/pom.xml +++ b/samples/cas/server/pom.xml @@ -17,7 +17,7 @@ ${jetty.version} /cas - ${basedir}/cas-server-webapp-3.3.1.war + ${basedir}/cas-server-webapp-3.3.3.war 9443