System.out.print("Invoking createAccount for Mr. John... ");
javax.xml.ws.Holder<Account> account = new javax.xml.ws.Holder<Account>(new Account());
try {
if (port.createAccount("John", account)) {
System.out.println("success");
} else {
System.out.println("failure (Unknown)");
}
} catch (AccountAlreadyExistsException ex) {