public class BookServer extends AbstractBusTestServerBase {
public static final String PORT = allocatePort(BookServer.class);
protected void run() {
//book service in unwrapped style
BookServiceImpl serviceObj = new BookServiceImpl();
JaxWsServerFactoryBean sf = new JaxWsServerFactoryBean();
sf.setServiceClass(BookService.class);
// Use the HTTP Binding which understands the Java Rest Annotations
sf.setBindingId(HttpBindingFactory.HTTP_BINDING_ID);
sf.setAddress("http://localhost:" + PORT + "/xml/");