// Test sending "Hello World"
// Note that the Hello World is divided into two items.
// This is due to the xsd:list serialization. This is expected.
List<String> request5 = new ArrayList<String>();
request5.add("Hello World");
List<String> response5 = proxy.echoStringList(request5);
assertTrue(response5!= null);
assertTrue(compareLists(request1, response5)); // Response 5 should be the same as Request 1
}catch(Exception e){
e.printStackTrace();
fail("Exception received" + e);