public void test_ulong()
throws Exception
{
int testValue = 4711;
Any outAny = setup.getClientOrb().create_any();
outAny.insert_ulong(testValue);
assertEquals(testValue, outAny.extract_ulong());
Any inAny = server.bounce_any(outAny);
assertEquals(testValue, inAny.extract_ulong());