Examples of ZIPCodeProxy


Examples of clients.zipcode.ZIPCodeProxy

        address.setAccessCode("9999");
        address.setAddress("607 Trinity");
        address.setCity("Austin");
        address.setState("TX");

        ZIPCodeProxy proxy = new ZIPCodeProxy(wsdlLocation);
        ShortZipCodeResponse response =
            proxy.getShortZipCodeResponse(address, portName);

        System.out.println(response.getShortZipCodeResult());
        assertTrue(response.getShortZipCodeResult().equals(expectedZipCode));
        // reset back to default soap provider
        TestUtilities.resetDefaultProviders();
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.