User: schaefera
  Date: 01/10/23 00:10:45

  Modified:    .        build.xml
  Log:
  Now the farm does not rely how the members are added it should work any-
  way. The problem was that when a new member is added that the new member
  does not get notified about the existing members which is fixed now.
  Also the deployed services are not pulled from the receiving members
  instead of pushed from the deploying server. Thus if a connection is
  down the services will be deployed anyway because on another route
  the server will be notified.
  
  Revision  Changes    Path
  1.37      +10 -2     jboss/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /cvsroot/jboss/jboss/build.xml,v
  retrieving revision 1.36
  retrieving revision 1.37
  diff -u -r1.36 -r1.37
  --- build.xml 2001/10/11 01:41:58     1.36
  +++ build.xml 2001/10/23 07:10:45     1.37
  @@ -10,7 +10,7 @@
   <!--                                                                        -->
   <!-- ====================================================================== -->
   
  -<!-- $Id: build.xml,v 1.36 2001/10/11 01:41:58 schaefera Exp $ -->
  +<!-- $Id: build.xml,v 1.37 2001/10/23 07:10:45 schaefera Exp $ -->
   
   <project default="main" name="JBoss/Server">
   
  @@ -525,7 +525,15 @@
           <!-- Exclude Main, it will go into run.jar -->
           <exclude name="org/jboss/Main*"/>
           <!-- Exclude JMX Connector stuff we will use the connector JSR for that -->
  -     <exclude name="org/jboss/jmx/**"/>
  +        <exclude name="org/jboss/jmx/**"/>
  +        <!-- But include this interface because the Farm needs it -->
  +        <include name="org/jboss/jmx/connector/RemoteMBeanServer.class"/>
  +      </fileset>
  +      <fileset dir="${build.classes}">
  +        <!-- But include this interface because the Farm needs it -->
  +        <include name="org/jboss/jmx/connector/RemoteMBeanServer.class"/>
  +        <include name="org/jboss/jmx/adaptor/rmi/RMIAdaptorImpl.class"/>
  +        <include name="org/jboss/jmx/adaptor/interfaces/Adaptor*.class"/>
         </fileset>
   
         <fileset dir="${build.resources}">
  
  
  

_______________________________________________
Jboss-development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development

Reply via email to