* optional third arg contains name to be greeted by hello service ("World" by default).
*/
public static void main(String[] args) {
String target = "http://localhost:8080";
String path = "jibx-ws-interceptor/welcome-service";
Greetee sender = new Greetee("World");
if (args.length > 0) {
target = args[0];
}
if (args.length > 1) {
path = args[1];
}
if (args.length > 2) {
sender = new Greetee(args[2]);
}
HelloClient client = null;
try {
client = new HelloClient(target + "/" + path);