public void testHeader() throws Exception {
RPCLit proxy = getProxy();
String request1 = "hello";
String request2 = "world";
String response = proxy.testHeader(request1, request2);
assertTrue(response != null);
assertTrue(response.equals("helloworld"));
// Try a second time
response = proxy.testHeader(request1, request2);