protected void run() {
SpringBusFactory bf = new SpringBusFactory();
Bus bus = bf.createBus("/org/apache/cxf/systest/ws/rm/decoupled_bare.xml");
BusFactory.setDefaultBus(bus);
Object implementor = new DocLitBareGreeterImpl();
String address = "http://localhost:" + PORT + "/SoapContext/SoapPort";
Endpoint ep = Endpoint.create(implementor);
Map<String, Object> properties = new HashMap<String, Object>();
properties.put("schema-validation-enabled", Boolean.TRUE);
ep.setProperties(properties);