public void testLongs() {
try{
RPCLit proxy = getProxy();
Long[] request = new Long[] {new Long(0), new Long(1), new Long(2)};
Long[] longs = proxy.testLongList4(request);
assertTrue(longs.length==3);
assertTrue(longs[0] == 0);
assertTrue(longs[1] == 1);
assertTrue(longs[2] == 2);
}catch(Exception e){