((BindingProvider)test).getRequestContext().put(BindingProvider.ENDPOINT_ADDRESS_PROPERTY,
"http://localhost:" + PORT + "/cxf885");
String ret = test.hello("A", "B");
assertEquals("Hello A and B", ret);
String ret2 = test.simple("Dan");
assertEquals("Hello Dan", ret2);
String ret3 = test.tripple("A", "B", "C");
assertEquals("Tripple: A B C", ret3);