public void testEndpoint() throws Exception {
JAXBDataBinding.clearCaches();
JaxWsServerFactoryBean svr = new JaxWsServerFactoryBean();
svr.setBus(bus);
svr.setServiceBean(new EchoFoo());
svr.setAddress("http://localhost:9000/hello");
List<String> schemas = new ArrayList<String>();
schemas.add("/org/apache/cxf/jaxws/service/echoFoo.xsd");
svr.setSchemaLocations(schemas);
Server server = svr.create();