for (String arg : args) {
if ("-jaxws".equals(arg)) {
jaxws = true;
}
}
HelloWorld client = null;
if (jaxws) {
client = createClientJaxWs();
} else {
client = createClientCxf();
}
String reply = client.sayHi("HI");
System.out.println(reply);
System.exit(0);
}