public class BookManagerClient{ @WebServiceRef(wsdlLocation = "META-INF/wsdl/localhost_8080/07-BookStore-JAXWS-Server/BookManager.wsdl") private static BookManager_Service service; public static void main(String[] args) { service = new BookManager_Service(); BookManager port = service.getBookManagerPort(); Utilities.displayResults(port.getBooksList(), BookInformation.class); System.out.println("Enter stockpile: "); int stockpile = Integer.parseInt(bufferedReader.readLine()); Utilities.displayResults(port.getBooksListWithStockpile(stockpile), BookInformationDetailed.class); } }