01: /**
02: * ZipCodeResolverSoap.java
03: *
04: * This file was auto-generated from WSDL
05: * by the Apache Axis WSDL2Java emitter.
06: */package docStyle.wsifservice;
07:
08: public interface ZipCodeResolverSoap extends java.rmi.Remote {
09:
10: /**
11: * Given a valid street address, city, and state, returns the ZIP code
12: * in NNNNN format. If an error occurs, returns 00000 instead. Use accessCode
13: * of '0' or '9999' for testing.
14: */
15: public java.lang.String ShortZipCode(java.lang.String accessCode,
16: java.lang.String address, java.lang.String city,
17: java.lang.String state) throws java.rmi.RemoteException;
18: }
|