GetInfoByZIPResponse response1 = new GetInfoByZIPResponse();
response1.setGetInfoByZIPResult(result1);
String xml1 = toXML(response1);
WeatherForecasts result2 = weatherForecast.getWeatherByZipCode(zipCode);
// Wrap the result so that it can be marshaled
GetWeatherByZipCodeResponse response2 = new GetWeatherByZipCodeResponse();
response2.setGetWeatherByZipCodeResult(result2);
String xml2 = toXML(response2);