[java-identity-provider COMMIT] in /trunk: idp-conf/src/main/resources/system/flows/saml1/sso-abstract-beans.xml idp-...

noreply at shibboleth.net noreply at shibboleth.net
Tue Jan 28 18:40:29 EST 2014


Author: tzeller
Date: Tue Jan 28 18:40:29 2014
New Revision: 5264

URL: http://svn.shibboleth.net/view/java-identity-provider?rev=5264&view=rev
Log:
Initial work on action to initialize the SAML 1 outbound message context.

Added:
    trunk/idp-saml-impl/src/main/java/net/shibboleth/idp/saml/impl/profile/saml1/InitializeOutboundMessageContext.java   (with props)
    trunk/idp-saml-impl/src/test/java/net/shibboleth/idp/saml/impl/profile/saml1/InitializeOutboundMessageContextTest.java   (with props)
Modified:
    trunk/idp-conf/src/main/resources/system/flows/saml1/sso-abstract-beans.xml
    trunk/idp-conf/src/main/resources/system/flows/saml1/sso-abstract-flow.xml

Modified: trunk/idp-conf/src/main/resources/system/flows/saml1/sso-abstract-beans.xml
URL: http://svn.shibboleth.net/view/java-identity-provider/trunk/idp-conf/src/main/resources/system/flows/saml1/sso-abstract-beans.xml?rev=5264&r1=5263&r2=5264&view=diff
==============================================================================
--- trunk/idp-conf/src/main/resources/system/flows/saml1/sso-abstract-beans.xml (original)
+++ trunk/idp-conf/src/main/resources/system/flows/saml1/sso-abstract-beans.xml Tue Jan 28 18:40:29 2014
@@ -134,6 +134,10 @@
         p:sessionLifetime="${idp.session.defaultSPlifetime}" />
 
     <bean
+        id="InitializeOutboundMessageContext"
+        class="net.shibboleth.idp.saml.impl.profile.saml1.InitializeOutboundMessageContext" />
+
+    <bean
         id="RecordResponseComplete"
         class="net.shibboleth.idp.profile.impl.RecordResponseComplete" />
 

Modified: trunk/idp-conf/src/main/resources/system/flows/saml1/sso-abstract-flow.xml
URL: http://svn.shibboleth.net/view/java-identity-provider/trunk/idp-conf/src/main/resources/system/flows/saml1/sso-abstract-flow.xml?rev=5264&r1=5263&r2=5264&view=diff
==============================================================================
--- trunk/idp-conf/src/main/resources/system/flows/saml1/sso-abstract-flow.xml (original)
+++ trunk/idp-conf/src/main/resources/system/flows/saml1/sso-abstract-flow.xml Tue Jan 28 18:40:29 2014
@@ -76,11 +76,16 @@
     
     <action-state id="UpdateSessionWithSPSession">
         <evaluate expression="UpdateSessionWithSPSession" />
-        <transition on="proceed" to="RecordResponseComplete"/>
+        <transition on="proceed" to="InitializeOutboundMessageContext"/>
         <!-- Mask storage failure. -->
-        <transition on="IOError" to="RecordResponseComplete"/>
+        <transition on="IOError" to="InitializeOutboundMessageContext"/>
     </action-state>
-    
+   
+    <action-state id="InitializeOutboundMessageContext">
+        <evaluate expression="InitializeOutboundMessageContext" />
+        <transition on="proceed" to="RecordResponseComplete" />
+    </action-state>
+
     <!-- TODO needs non-null outbound message context
     <action-state id="HandleOutboundMessage">
         <evaluate expression="HandleOutboundMessage" />



More information about the commits mailing list