public class WeatherForecastClient {
public static void main(String[] args) throws Exception {
SCADomain domain = SCADomain.newInstance("WeatherForecast.composite");
WeatherForecastSoap weatherService = domain.getService(WeatherForecastSoap.class, "WeatherForecastService");
WeatherForecasts result = weatherService.getWeatherByZipCode("94555");
// Dump the result as XML
// Wrap the result so that it can be marshaled
GetWeatherByZipCodeResponse response = new GetWeatherByZipCodeResponse();