sf.getServiceFactory().setWrapped(false);
sf.create();
//book service in wrapped style
BookServiceWrappedImpl serviceWrappedObj = new BookServiceWrappedImpl();
JaxWsServerFactoryBean sfWrapped = new JaxWsServerFactoryBean();
sfWrapped.setServiceClass(BookServiceWrapped.class);
// Use the HTTP Binding which understands the Java Rest Annotations
sfWrapped.setBindingId(HttpBindingFactory.HTTP_BINDING_ID);
sfWrapped.setAddress("http://localhost:" + PORT + "/xmlwrapped");