[java-identity-provider COMMIT] in /trunk/idp-conf/src/main/resources/system/flows/saml: saml-abstract-flow.xml saml1...
noreply at shibboleth.net
noreply at shibboleth.net
Mon Jun 2 20:20:20 EDT 2014
Author: scantor
Date: Mon Jun 2 20:20:18 2014
New Revision: 6036
URL: http://svn.shibboleth.net/view/java-identity-provider?rev=6036&view=rev
Log:
IDP-416 - Add MessageChannelSecurityContext action with bean type defined per profile.
Modified:
trunk/idp-conf/src/main/resources/system/flows/saml/saml-abstract-flow.xml
trunk/idp-conf/src/main/resources/system/flows/saml/saml1/artifact-resolution-beans.xml
trunk/idp-conf/src/main/resources/system/flows/saml/saml1/attribute-query-beans.xml
trunk/idp-conf/src/main/resources/system/flows/saml/saml1/sso-abstract-beans.xml
trunk/idp-conf/src/main/resources/system/flows/saml/saml2/artifact-resolution-beans.xml
trunk/idp-conf/src/main/resources/system/flows/saml/saml2/attribute-query-beans.xml
trunk/idp-conf/src/main/resources/system/flows/saml/saml2/sso-abstract-beans.xml
Modified: trunk/idp-conf/src/main/resources/system/flows/saml/saml-abstract-flow.xml
URL: http://svn.shibboleth.net/view/java-identity-provider/trunk/idp-conf/src/main/resources/system/flows/saml/saml-abstract-flow.xml?rev=6036&r1=6035&r2=6036&view=diff
==============================================================================
--- trunk/idp-conf/src/main/resources/system/flows/saml/saml-abstract-flow.xml (original)
+++ trunk/idp-conf/src/main/resources/system/flows/saml/saml-abstract-flow.xml Mon Jun 2 20:20:18 2014
@@ -43,6 +43,7 @@
<action-state id="OutboundContextsAndSecurityParameters">
<evaluate expression="InitializeOutboundMessageContext" />
+ <evaluate expression="InitializeMessageChannelSecurityContext" />
<evaluate expression="PopulateBindingAndEndpointContexts" />
<evaluate expression="PopulateResponseSignatureSigningParameters" />
<evaluate expression="PopulateAssertionSignatureSigningParameters" />
Modified: trunk/idp-conf/src/main/resources/system/flows/saml/saml1/artifact-resolution-beans.xml
URL: http://svn.shibboleth.net/view/java-identity-provider/trunk/idp-conf/src/main/resources/system/flows/saml/saml1/artifact-resolution-beans.xml?rev=6036&r1=6035&r2=6036&view=diff
==============================================================================
--- trunk/idp-conf/src/main/resources/system/flows/saml/saml1/artifact-resolution-beans.xml (original)
+++ trunk/idp-conf/src/main/resources/system/flows/saml/saml1/artifact-resolution-beans.xml Mon Jun 2 20:20:18 2014
@@ -25,12 +25,15 @@
<bean id="DecodeMessage" class="org.opensaml.profile.action.impl.DecodeMessage" scope="prototype">
<constructor-arg>
- <bean class="org.opensaml.saml.saml1.binding.decoding.impl.HTTPSOAP11Decoder" scope="prototype">
- <property name="parserPool" ref="shibboleth.ParserPool" />
- <property name="httpServletRequest" ref="shibboleth.HttpServletRequest" />
- </bean>
+ <bean class="org.opensaml.saml.saml1.binding.decoding.impl.HTTPSOAP11Decoder" scope="prototype"
+ p:parserPool-ref="shibboleth.ParserPool"
+ p:httpServletRequest-ref="shibboleth.HttpServletRequest" />
</constructor-arg>
</bean>
+
+ <bean id="InitializeMessageChannelSecurityContext"
+ class="org.opensaml.profile.action.impl.HttpServletRequestMessageChannelSecurity" scope="prototype"
+ p:httpServletRequest-ref="shibboleth.HttpServletRequest" />
<alias name="shibboleth.OutgoingSOAPBindings" alias="shibboleth.OutgoingBindings"/>
Modified: trunk/idp-conf/src/main/resources/system/flows/saml/saml1/attribute-query-beans.xml
URL: http://svn.shibboleth.net/view/java-identity-provider/trunk/idp-conf/src/main/resources/system/flows/saml/saml1/attribute-query-beans.xml?rev=6036&r1=6035&r2=6036&view=diff
==============================================================================
--- trunk/idp-conf/src/main/resources/system/flows/saml/saml1/attribute-query-beans.xml (original)
+++ trunk/idp-conf/src/main/resources/system/flows/saml/saml1/attribute-query-beans.xml Mon Jun 2 20:20:18 2014
@@ -25,12 +25,15 @@
<bean id="DecodeMessage" class="org.opensaml.profile.action.impl.DecodeMessage" scope="prototype">
<constructor-arg>
- <bean class="org.opensaml.saml.saml1.binding.decoding.impl.HTTPSOAP11Decoder" scope="prototype">
- <property name="parserPool" ref="shibboleth.ParserPool" />
- <property name="httpServletRequest" ref="shibboleth.HttpServletRequest" />
- </bean>
+ <bean class="org.opensaml.saml.saml1.binding.decoding.impl.HTTPSOAP11Decoder" scope="prototype"
+ p:parserPool-ref="shibboleth.ParserPool"
+ p:httpServletRequest-ref="shibboleth.HttpServletRequest" />
</constructor-arg>
</bean>
+
+ <bean id="InitializeMessageChannelSecurityContext"
+ class="org.opensaml.profile.action.impl.HttpServletRequestMessageChannelSecurity" scope="prototype"
+ p:httpServletRequest-ref="shibboleth.HttpServletRequest" />
<alias name="shibboleth.OutgoingSOAPBindings" alias="shibboleth.OutgoingBindings"/>
[... 86 lines stripped ...]
More information about the commits
mailing list