Methods Summary |
---|
public static HostedClientSoap | createProxy()
HostedClientSoapImpl hostclisvc = new HostedClientSoapImpl();
return hostclisvc.getBasicHttpBindingHostedClientSoap();
|
public static void | main(java.lang.String[] args)
String serviceUrl = System.getProperty("service.url");
String sts = System.getProperty("sts");
String stsUrl = System.getProperty("msclient."+sts+"sts.url");
if(InetAddress.getByName(URI.create(serviceUrl).getHost()).isLoopbackAddress()){
serviceUrl = serviceUrl.replaceFirst("localhost",InetAddress.getLocalHost().getHostAddress());
}
if(InetAddress.getByName(URI.create(stsUrl).getHost()).isLoopbackAddress()){
stsUrl = stsUrl.replaceFirst("localhost",InetAddress.getLocalHost().getHostAddress());
}
HostedClientSoap proxy = createProxy();
ArrayOfHostedClientParameter paramArray = new ArrayOfHostedClientParameter();
List<HostedClientParameter> list = paramArray.getHostedClientParameter();
HostedClientParameter stsParameter = readParameter(stsUrl, PARAM_STSAddress);
list.add(stsParameter);
HostedClientParameter serviceParameter = readParameter(serviceUrl, PARAM_ServiceAddress);
list.add(serviceParameter);
HostedClientParameter configParameter = readParameter(SCENARIO_1, PARAM_ConfigName);
list.add(configParameter);
runScenario(SCENARIO_1,paramArray,proxy);
|
public static HostedClientParameter | readParameter(java.lang.String endpoint, java.lang.String parameterName)
HostedClientParameter parameter = new HostedClientParameter();
parameter.setKey(parameterName);
parameter.setValue(endpoint);
return parameter;
|
public static void | runScenario(java.lang.String scenarioName, ArrayOfHostedClientParameter paramArray, HostedClientSoap proxy)
System.out.println("Run Scenario: " + scenarioName);
List<HostedClientParameter> list = paramArray.getHostedClientParameter();
for(int i = 0; i<list.size();i++) {
System.out.println(list.get(i).getKey() + ":" + list.get(i).getValue());
}
System.out.println("Proxy created=================: " + proxy);
HostedClientResult result = proxy.run(featureName, scenarioName, paramArray);
System.out.println("Result: " + (result.isSuccess() ? "PASS" : "FAIL"));
System.out.println("Debuglog: " + result.getDebugLog());
|