JaxWsServerFactoryBean sf = new JaxWsServerFactoryBean();
sf.setBus(getBus());
sf.setServiceClass(CustomerService.class);
sf.getServiceFactory().setWrapped(false);
sf.setAddress("http://localhost:9002/foo/");
sf.setServiceBean(new CustomerService());
//sf.setBindingId(HttpBindingFactory.HTTP_BINDING_ID);
Map<String, Object> props = new HashMap<String, Object>();
props.put("contextMatchStrategy", "stem");
sf.setProperties(props);