[jboss-cvs] JBossAS SVN: r60298 - branches/Branch_4_2/server/src/etc/conf/default.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Mon Feb 5 11:01:55 EST 2007


Author: dimitris at jboss.org
Date: 2007-02-05 11:01:55 -0500 (Mon, 05 Feb 2007)
New Revision: 60298

Modified:
   branches/Branch_4_2/server/src/etc/conf/default/jboss-minimal.xml
Log:
adapt the minimal config to the Naming service changes

Modified: branches/Branch_4_2/server/src/etc/conf/default/jboss-minimal.xml
===================================================================
--- branches/Branch_4_2/server/src/etc/conf/default/jboss-minimal.xml	2007-02-05 15:51:48 UTC (rev 60297)
+++ branches/Branch_4_2/server/src/etc/conf/default/jboss-minimal.xml	2007-02-05 16:01:55 UTC (rev 60298)
@@ -25,8 +25,9 @@
    </mbean>
 
    <!-- ==================================================================== -->
-   <!-- JNDI                                                                 -->
+   <!-- Thread Pool                                                          -->
    <!-- ==================================================================== -->
+   
    <!-- A Thread pool service -->
    <mbean code="org.jboss.util.threadpool.BasicThreadPool"
       name="jboss.system:service=ThreadPool">
@@ -49,28 +50,48 @@
       <attribute name="BlockingMode">run</attribute>
    </mbean>
 
+   <!-- ==================================================================== -->
+   <!-- JNDI                                                                 -->
+   <!-- ==================================================================== -->
+   
+   <!-- A simple mbean wrapper around the jndi Naming object. This
+   only handles an in memory instance. The NamingService uses this
+   as the JNDI store and exposes it remotely.
+   -->
+   <mbean code="org.jnp.server.NamingBeanImpl"
+      name="jboss:service=NamingBeanImpl"
+      xmbean-dd="resource:xmdesc/NamingBean-xmbean.xml">
+   </mbean>
+   
    <mbean code="org.jboss.naming.NamingService"
-      name="jboss:service=Naming">
+      name="jboss:service=Naming"
+      xmbean-dd="resource:xmdesc/NamingService-xmbean.xml">
       <!-- The call by value mode. true if all lookups are unmarshalled using
-      the caller's TCL, false if in VM lookups return the value by reference.
+         the caller's TCL, false if in VM lookups return the value by reference.
       -->
       <attribute name="CallByValue">false</attribute>
       <!-- The listening port for the bootstrap JNP service. Set this to -1
-        to run the NamingService without the JNP invoker listening port.
+         to run the NamingService without the JNP invoker listening port.
       -->
       <attribute name="Port">1099</attribute>
       <!-- The bootstrap JNP server bind address. This also sets the default
-      RMI service bind address. Empty == all addresses
-       -->
+         RMI service bind address. Empty == all addresses
+      -->
       <attribute name="BindAddress">${jboss.bind.address}</attribute>
       <!-- The port of the RMI naming service, 0 == anonymous -->
       <attribute name="RmiPort">1098</attribute>
       <!-- The RMI service bind address. Empty == all addresses
-       -->
+      -->
       <attribute name="RmiBindAddress">${jboss.bind.address}</attribute>
       <!-- The thread pool service used to control the bootstrap lookups -->
       <depends optional-attribute-name="LookupPool"
          proxy-type="attribute">jboss.system:service=ThreadPool</depends>
+      <!-- An example of using the unifed invoker as the transport.
+         <depends optional-attribute-name="InvokerProxyFactory"
+         proxy-type="attribute">jboss:service=proxyFactory,type=unified,target=Naming</depends>
+      -->
+      <depends optional-attribute-name="Naming"
+         proxy-type="attribute">jboss:service=NamingBeanImpl</depends>
    </mbean>
 
    <!-- ==================================================================== -->




More information about the jboss-cvs-commits mailing list