{
Any testValue = setup.getClientOrb().create_any();
testValue.insert_string("foo");
Any outAny = setup.getClientOrb().create_any();
outAny.insert_Streamable(new AnyHolder(testValue));
assertEquals(testValue, outAny.extract_any());
Any inAny = server.bounce_any(outAny);
assertEquals(testValue, inAny.extract_any());