[jboss-cvs] JBossAS SVN: r57572 - branches/JBoss_4_0_4_GA_JBAS-3755/messaging/src/etc/server/examples/deploy

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Wed Oct 11 15:05:08 EDT 2006


Author: scott.stark at jboss.org
Date: 2006-10-11 15:05:07 -0400 (Wed, 11 Oct 2006)
New Revision: 57572

Modified:
   branches/JBoss_4_0_4_GA_JBAS-3755/messaging/src/etc/server/examples/deploy/sslext-uil2-service.xml
Log:
Use the ServerSocketFactoryBean attribute

Modified: branches/JBoss_4_0_4_GA_JBAS-3755/messaging/src/etc/server/examples/deploy/sslext-uil2-service.xml
===================================================================
--- branches/JBoss_4_0_4_GA_JBAS-3755/messaging/src/etc/server/examples/deploy/sslext-uil2-service.xml	2006-10-11 18:57:18 UTC (rev 57571)
+++ branches/JBoss_4_0_4_GA_JBAS-3755/messaging/src/etc/server/examples/deploy/sslext-uil2-service.xml	2006-10-11 19:05:07 UTC (rev 57572)
@@ -62,10 +62,16 @@
 
     <!-- SSL Socket Factories -->
     <attribute name="ClientSocketFactory">org.jboss.security.ssl.ClientSocketFactory</attribute>
-    <attribute name="ServerSocketFactory">org.jboss.security.ssl.DomainServerSocketFactory</attribute>
-
-    <!-- Security domain - see below -->
-    <attribute name="SecurityDomain">java:/jaas/SSL</attribute>
+    <attribute name="ServerSocketFactoryBean"
+             attributeClass="org.jboss.security.ssl.DomainServerSocketFactory"
+             serialDataType="javaBean">
+            <property name="bindAddress">${jboss.bind.address}</property>
+            <property name="securityDomain">java:/jaas/SSL</property>
+            <property name="wantsClientAuth">true</property>
+            <property name="needsClientAuth">true</property>
+            <property name="CiperSuites">TLS_DHE_DSS_WITH_AES_128_CBC_SHA</property>
+            <property name="Protocols">SSLv2Hello,SSLv3,TLSv1</property>
+    </attribute>
   </mbean>
 
   <!-- Configures the keystore on the security domain




More information about the jboss-cvs-commits mailing list