new SpringBusFactory().createBus("etc/client.xml");
List<String> results = new ArrayList<String>();
for (String portPrefix : argv) {
try {
final PingService11 svc;
if (local) {
wsdlLocation = new URL("http://localhost:9001/" + portPrefix + "PingService?wsdl");
}
if (wsdlLocation == null) {
svc = new PingService11();
} else {
svc = new PingService11(wsdlLocation);
}
final IPingService port =
svc.getPort(
new QName(
"http://InteropBaseAddress/interop",
portPrefix + "_IPingService"
),
IPingService.class