User: hiram   
  Date: 00/12/11 21:59:06

  Modified:    build    build.xml
  Log:
  Several Chanages:
  - Invocation layer simplified by joing the DistributedQueueConnectionFactory and 
DistributedTopicConnectionFactory into DistributedConnectionFactory
  - Seperated server code from client code ( server code moved to org.spydermq.server )
  - All publish() calls are now sync to the provider.
  - Added a Transaction class to better represent a commit/rollback request to the 
server.
  - Now have a InvocationLayerFactory so that we can potentialy load multiple 
invocation layers (OIL/UIL/RMI) at the same time.
  
  Revision  Changes    Path
  1.19      +1 -5      spyderMQ/build/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /products/cvs/ejboss/spyderMQ/build/build.xml,v
  retrieving revision 1.18
  retrieving revision 1.19
  diff -u -r1.18 -r1.19
  --- build.xml 2000/11/29 00:19:31     1.18
  +++ build.xml 2000/12/12 05:59:06     1.19
  @@ -77,13 +77,9 @@
                
                <!-- The RMIC commands -->
                <rmic base="${build.dest}" 
classname="org.spydermq.distributed.server.DistributedJMSServerRMIImpl" 
classpath="${build.lib}/ext/jms.jar" stubVersion="1.2" />
  -             <rmic base="${build.dest}" 
classname="org.spydermq.distributed.server.DistributedTopicConnectionFactoryRMIImpl" 
classpath="${build.lib}/ext/jms.jar" stubVersion="1.2" />
  -             <rmic base="${build.dest}" 
classname="org.spydermq.distributed.server.DistributedQueueConnectionFactoryRMIImpl" 
classpath="${build.lib}/ext/jms.jar" stubVersion="1.2" />
  +             <rmic base="${build.dest}" 
classname="org.spydermq.distributed.server.DistributedConnectionFactoryRMIImpl" 
classpath="${build.lib}/ext/jms.jar" stubVersion="1.2" />
                <rmic base="${build.dest}" 
classname="org.spydermq.distributed.server.ConnectionReceiverRMIImpl" 
classpath="${build.lib}/ext/jms.jar" stubVersion="1.2" />
                
  -             <!-- DEBUG -->
  -             <rmic base="${build.dest}" 
classname="org.spydermq.server.RemoteControlImpl" classpath="${build.lib}/ext/jms.jar" 
stubVersion="1.2" />
  -     
        </target>
        
        <target name="dist" depends="init,core">
  
  
  

Reply via email to