public GetWeatherByZipCodeResponse GetWeatherByZipCode(GetWeatherByZipCode body)
{
GetWeatherByZipCodeResponse res = new GetWeatherByZipCodeResponse();
String zipCode = body.getZipCode();
WeatherForecastsType weather = new WeatherForecastsType();
weather.setLatitude(1);
weather.setLongitude(1);
weather.setPlaceName("Vienna, AT");
weather.setAllocationFactor(1);
res.setGetWeatherByZipCodeResult(weather);
return res;
}