Ignore:
Timestamp:
05/17/13 15:41:11 (12 years ago)
Author:
gguerrero
Message:

Fixed dynamic Serializer (by default is JavaImp?).
Added compression parameter (by default is false).

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/objectmq/src/omq/ztest/calculator/CalculatorTest.java

    r9 r11  
    2222
    2323                // Get host info of rabbimq (where it is)
    24                 env.setProperty(ParameterQueue.SERVER_HOST, "127.0.0.1");
     24                env.setProperty(ParameterQueue.SERVER_HOST, "10.30.239.228");
    2525                env.setProperty(ParameterQueue.SERVER_PORT, "5672");
     26                env.setProperty(ParameterQueue.SERIALIZERNAME, "omq.common.util.Serializers.KryoImp");
     27                env.setProperty(ParameterQueue.ENABLECOMPRESSION, "true");
    2628
    2729                // Get info about the queue & the exchange where the RemoteListener will
     
    4446
    4547                // Set host info of rabbimq (where it is)
    46                 env.setProperty(ParameterQueue.SERVER_HOST, "127.0.0.1");
     48                env.setProperty(ParameterQueue.SERVER_HOST, "10.30.239.228");
    4749                env.setProperty(ParameterQueue.SERVER_PORT, "5672");
    48 
     50                env.setProperty(ParameterQueue.SERIALIZERNAME, "omq.common.util.Serializers.KryoImp");
     51                env.setProperty(ParameterQueue.ENABLECOMPRESSION, "true");
     52               
    4953                // Set info about where the message will be sent
    5054                env.setProperty(ParameterQueue.RPC_EXCHANGE, "rpc_exchange");
     
    5761
    5862                Broker.initBroker(env);
    59 
    6063                remoteCalc = (Calculator) Broker.lookup(Calculator.class.getSimpleName(), Calculator.class);
    6164        }
Note: See TracChangeset for help on using the changeset viewer.