public void testSimple() throws Exception {
try{
RPCLit proxy = getProxy();
String request = "This is a test...";
String response = proxy.testSimple(request);
assertTrue(response != null);
assertTrue(response.equals(request));
}catch(Exception e){
e.printStackTrace();
fail("Exception received" + e);