public class WeatherService {
@WebMethod(operationName = "GetWeatherByZipCode")
public GetWeatherByZipCodeResponseDocument getWeatherByZipCode(
@WebParam(name = "GetWeatherByZipCode") GetWeatherByZipCodeDocument body) {
GetWeatherByZipCodeResponseDocument res = GetWeatherByZipCodeResponseDocument.Factory.newInstance();
WeatherForecasts weather = res.addNewGetWeatherByZipCodeResponse().addNewGetWeatherByZipCodeResult();
weather.setLatitude(1);
weather.setLongitude(1);
weather.setPlaceName("Grand Rapids, MI");