Re: [infinispan-dev] storeAsBinary + lookup

2013-08-06 Thread Galder ZamarreƱo
https://issues.jboss.org/browse/ISPN-3396 On Aug 6, 2013, at 12:31 AM, Ales Justin ales.jus...@gmail.com wrote: Forgot to mention: Put was done in 1st .war, where get is done in 2nd .war. @Test @InSequence(1) @OperateOnModule(m1) public void testPut() throws Exception

[infinispan-dev] storeAsBinary + lookup

2013-08-05 Thread Ales Justin
Anything obvious on why this lookup doesn't find its match? Some background: * I have .ear, with 2 .war sub-deployments * each .war has own Key class in own gae.jar (in WEB-INF/lib) I do set storeAsBinary on the cache, which is shared between both .wars. This first key is the key for 2nd

Re: [infinispan-dev] storeAsBinary + lookup

2013-08-05 Thread Ales Justin
Forgot to mention: Put was done in 1st .war, where get is done in 2nd .war. @Test @InSequence(1) @OperateOnModule(m1) public void testPut() throws Exception { Key key = ds.put(new Entity(MODULES_KIND, 1)); Assert.assertNotNull(key); } @Test