[jboss-svn-commits] JBL Code SVN: r29407 - labs/jbossesb/workspace/dbevenius/saml_support/product/samples/quickstarts/security_saml.

jboss-svn-commits at lists.jboss.org jboss-svn-commits at lists.jboss.org
Fri Sep 18 11:10:36 EDT 2009


Author: beve
Date: 2009-09-18 11:10:35 -0400 (Fri, 18 Sep 2009)
New Revision: 29407

Modified:
   labs/jbossesb/workspace/dbevenius/saml_support/product/samples/quickstarts/security_saml/jboss-esb.xml
Log:
Update with another service to make the quickstart more clear.


Modified: labs/jbossesb/workspace/dbevenius/saml_support/product/samples/quickstarts/security_saml/jboss-esb.xml
===================================================================
--- labs/jbossesb/workspace/dbevenius/saml_support/product/samples/quickstarts/security_saml/jboss-esb.xml	2009-09-18 14:54:18 UTC (rev 29406)
+++ labs/jbossesb/workspace/dbevenius/saml_support/product/samples/quickstarts/security_saml/jboss-esb.xml	2009-09-18 15:10:35 UTC (rev 29407)
@@ -16,7 +16,9 @@
 
     <services>
 
-		 <service category="SamlSecurityQuickstart" name="unsecuredService" description="" invmScope="GLOBAL">
+		 <service category="SamlSecurityQuickstart" name="issueTokenService" 
+			invmScope="GLOBAL"
+			description="This service is used to demonstrate using the JBossSTSAction to request JBossSTS to issue a SAML Token for the user configured in jboss-sts-client.properites">
 
             <listeners>
                 <jms-listener name="JMSGatewayListener" busidref="quickstartGatewayChannel" is-gateway="true"/>
@@ -36,7 +38,7 @@
 
 				<action name="routeAction"  class="org.jboss.soa.esb.actions.StaticRouter">
                     <property name="destinations">
-                       <route-to service-category="SamlSecurityQuickstart" service-name="securedService"/>
+                       <route-to service-category="SamlSecurityQuickstart" service-name="securedSamlService"/>
 					</property>
                 </action>
 
@@ -44,13 +46,23 @@
         </service>
 
 
-        <service category="SamlSecurityQuickstart" name="securedService" description="">
-
+        <service category="SamlSecurityQuickstart" name="securedSamlService" 
+			invmScope="GLOBAL"
+			description="This service is used to demonstrate that an ESB service can be configured using SAML Security.">
 			<security moduleName="jbossesb-saml" callbackHandler="org.jboss.soa.esb.services.security.auth.login.JBossSTSCallbackHandler"/>
+            <actions mep="OneWay">
 
-            <listeners>
-                <jms-listener name="JMS-ESBListener" busidref="quickstartEsbChannel"/>
-            </listeners>
+				<action name="routeAction"  class="org.jboss.soa.esb.actions.StaticRouter">
+                    <property name="destinations">
+                       <route-to service-category="SamlSecurityQuickstart" service-name="unsecuredService"/>
+					</property>
+                </action>
+            </actions>
+        </service>
+
+		<service category="SamlSecurityQuickstart" name="unsecuredService" 
+			invmScope="GLOBAL"
+			description="This service is used to demonstate calling a Web Service that has been configured for SAML Assertion validation using JBossSTS.">
             <actions mep="OneWay">
 
                 <action name="JBossWSAdapter" class="org.jboss.soa.esb.actions.soap.SOAPProcessor">



More information about the jboss-svn-commits mailing list