public void testStringList() throws Exception {
try{
RPCLit proxy = getProxy();
String[] request = new String[] {"Hello" , "World"};
String[] response = proxy.testStringList2(request);
assertTrue(response != null);
assertTrue(response.length==2);
assertTrue(response[0].equals("Hello"));
assertTrue(response[1].equals("World"));
}catch(Exception e){