updateAddressPort(port, WSDL_PORT);
String resp;
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);