HelloResponse response = helloService.sayHello(request);
assertEquals("Hello World!", response.getGreeting());
}
private void checkHelloServiceFault(HelloService helloService) {
HelloRequest request = new HelloRequest();
request.setToWho("FAULT");
try {
helloService.sayHello(request);
fail("Should have thrown an Exception");
}
catch (HelloFaultMessage exception) {