ClientProxy.getClient(port).getInInterceptors().add(new LoggingInInterceptor());
ClientProxy.getClient(port).getOutInterceptors().add(new LoggingOutInterceptor());
resp = port.sayHi();
assertEquals("We should get the right response", "Bonjour", resp);
resp = port.greetMe("Willem");
assertEquals("We should get the right response", "Hello Willem", resp);
try {
port.greetMe("fault");
fail("Should have been a fault");