throws Exception
{
TypeCode testValue = AnyServerHelper.type();
Any outAny = setup.getClientOrb().create_any();
outAny.insert_Streamable(new TypeCodeHolder(testValue));
assertEquals(testValue, outAny.extract_TypeCode());
Any inAny = server.bounce_any(outAny);
assertTrue(testValue.equal(inAny.extract_TypeCode()));