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);
String aresp[] = port.sayHiArray(new String[] {"Dan"});
assertEquals("Hello", aresp[0]);
assertEquals("Dan", aresp[1]);