throws Exception
{
BigDecimal testValue = new BigDecimal("471.1");
Any outAny = setup.getClientOrb().create_any();
outAny.insert_Streamable(new FixedHolder(testValue));
assertEquals(testValue, outAny.extract_fixed());
Any inAny = server.bounce_any(outAny);
assertEquals(testValue, inAny.extract_fixed());