{
String testValue = "hello world";
Any outAny = setup.getClientOrb().create_any();
outAny.insert_Streamable(new StringHolder(testValue));
Streamable s = outAny.extract_Streamable();
assertEquals (testValue, ((StringHolder)s).value);
Any inAny = server.bounce_any(outAny);
assertTrue (outAny.equal(inAny));
}