// Configure incoming secuirty
client.addInHandler(new DOMInHandler());
Properties inProperties = new Properties();
configureInProperties(inProperties);
client.addInHandler(new WSS4JInHandler(inProperties));
System.out.print("Looking for isbn : 0123456789 ....");
Book b = service.findBook("0123456789");
System.out.print(b.getTitle() + " : " + b.getAuthor() + "\n");