Package org.jibx.ws.example.headers.common

Examples of org.jibx.ws.example.headers.common.Greetee


     *             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-soap-headers/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);
View Full Code Here

TOP

Related Classes of org.jibx.ws.example.headers.common.Greetee

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.