public void testCXF885() throws Exception {
Service serv = Service.create(new QName("http://example.com", "MixedTest"));
MixedTest test = serv.getPort(MixedTest.class);
((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);