public class LocationClient {
public static void main(String[] args) throws Exception {
SCADomain domain = SCADomain.newInstance("USLocation.composite");
USZipSoap zipService = domain.getService(USZipSoap.class, "USLocationService");
GetInfoByZIPResponse.GetInfoByZIPResult result = zipService.getInfoByZIP("94555");
GetInfoByZIPResponse response = new GetInfoByZIPResponse();
response.setGetInfoByZIPResult(result);
JAXBContext context = JAXBContext.newInstance(GetInfoByZIPResponse.class);