String response = proxy.testSimple2(request1, request2);
assertTrue(response != null);
assertTrue(response.equals("helloworld"));
// Try a second time
response = proxy.testSimple2(request1, request2);
assertTrue(response != null);
assertTrue(response.equals("helloworld"));
}catch(Exception e){
e.printStackTrace();
fail("Exception received" + e);