final String weatherForecast = muleClient.send(
"wsdl-cxf:http://localhost:" + getPorts().get(0) + "/weather-forecast/" + proxyId
+ "?wsdl&method=GetWeatherByZipCode", "95050", null, getTestTimeoutSecs() * 1000)
.getPayloadAsString();
assertEquals(new WeatherForecaster().getByZipCode("95050"), weatherForecast);
}