import com.webservicemart.ws.*;

/** 
 * See http://www.xmethods.net/ve2/ViewListing.po?key=uuid:D89AEED6-521E-75EE-D993-EB1E1D89ACFB
 */
class ZipDemo
{
    public static void main(String [] args)
    {
        try
        {
            USZip service = new USZipLocator();
            USZipSoap port = service.getUSZipSoap();
            System.out.println(port.validateZip("02138"));
        }
        catch (Exception e)
        {
            System.out.println(e);
        }
    }
}
