Internet
"http://www.webservicex.net/country.asmx?WSDL"
false
"username"
"password"
false
"windows_domain"
false
"61.163.92.4"
"8080"
""
""
false
"C:/clientTrustStore.trustStore"
"password"
"C:/clientTrustStore.keyStore"
"password"
"GetWeather"
20
false
false
//==============================================================================
//example code for : http://www.deeptraining.com/webservices/weather.asmx?WSDL
//==============================================================================
/*
routines.WeatherSoap_PortType weatherSoap = new routines.WeatherLocator().getWeatherSoap();
routines.WeatherSoap_BindingStub stub = (routines.WeatherSoap_BindingStub)weatherSoap;
//stub.setUsername(String username);
//stub.setPassword(String password);
//stub.setTimeout(int timeout);
//AxisProperties.setProperty("http.proxyHost", proxyHost);
//AxisProperties.setProperty("http.proxyPort", proxyPort);
//AxisProperties.setProperty("http.proxyUser", proxyUser);
//AxisProperties.setProperty("http.proxyPassword", proxyPassword);
String city = "Paris";
String result = weatherSoap.getWeather(city);
output_row.weather = result;
*/
//==============================================================================
//example code for : http://localhost:8080/talendJob_0.1/services/talendJob?wsdl
//==============================================================================
/*
routines.TalendJob_PortType talendJob = new routines.TalendJobServiceLocator().getTalendJob();
routines.TalendJobSoapBindingStub stub = (routines.TalendJobSoapBindingStub)talendJob;
//stub.setUsername(String username);
//stub.setPassword(String password);
//stub.setTimeout(int timeout);
//AxisProperties.setProperty("http.proxyHost", proxyHost);
//AxisProperties.setProperty("http.proxyPort", proxyPort);
//AxisProperties.setProperty("http.proxyUser", proxyUser);
//AxisProperties.setProperty("http.proxyPassword", proxyPassword);
String[] args = new String[]{};
String[][] result = talendJob.runJob(args);
for(int i = 0; i < result.length; i++){
// output_row.name = result[i][0];
// output_row.address = result[i][1];
// output_row.phone = result[i][2];
*/