MyValueType testValue = new MyValueTypeImpl(4711);
Any outAny = setup.getClientOrb().create_any();
outAny.insert_Value(testValue,
MyValueTypeHelper.type());
assertEquals(testValue, outAny.extract_Value());
Any inAny = server.bounce_any(outAny);
assertEquals(testValue, MyValueTypeHelper.extract(inAny));
assertTrue(outAny.equal(inAny));
}