/**
* Simple test that ensures that we can echo a string to an rpc/lit web service.
*/
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"));
// Try a second time
response = proxy.testStringList2(request);
assertTrue(response != null);
assertTrue(response.length==2);
assertTrue(response[0].equals("Hello"));
assertTrue(response[1].equals("World"));
}catch(Exception e){