Package complexsoap.client.stub.com.cdyne.ws

Examples of complexsoap.client.stub.com.cdyne.ws.Zip2GeoSoap


                new QName("http://ws.cdyne.com", "LatLongReturn"),
                Class.forName(
                    "complexsoap.client.stub.com.cdyne.ws.LatLongReturn"));

            // create the stub
            Zip2GeoSoap stub = (Zip2GeoSoap) service.getStub(Zip2GeoSoap.class);

            // do the invocation
            // args[1] is the zip code
            LatLongReturn zipInfo = stub.GetLatLong(args[1], "");

            System.out.println(
                "This zip code is in "
                    + zipInfo.getCity()
                    + ","
View Full Code Here

TOP

Related Classes of complexsoap.client.stub.com.cdyne.ws.Zip2GeoSoap

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.