System.out.println("Server responded with: " + resp);
System.out.println();
System.out.println("Invoking greetMe with invalid length string, expecting exception...");
try {
resp = port.greetMe("Invoking greetMe with invalid length string, expecting exception...");
} catch (ProtocolException e) {
System.out.println("Expected exception has occurred: " + e.getClass().getName());
}
System.out.println();