throws Exception
{
byte testValue = (byte) 0xFF;
Any outAny = setup.getClientOrb().create_any();
outAny.insert_Streamable(new ByteHolder(testValue));
assertEquals(testValue, outAny.extract_octet());
Any inAny = server.bounce_any(outAny);
assertEquals(testValue, inAny.extract_octet());