URL wsdl = getClass().getResource("/wsdl/" + Matrix.TWO_TIER_TESTS[index].clientData.clientWsdl);
assertNotNull(wsdl);
QName serviceName =
new QName("http://objectweb.org/hello_world_soap_http_secure",
Matrix.TWO_TIER_TESTS[index].clientData.clientServiceName);
SecureSOAPService service = new SecureSOAPService(wsdl, serviceName);
assertNotNull(service);
QName portName = new QName("http://objectweb.org/hello_world_soap_http_secure",
Matrix.TWO_TIER_TESTS[index].clientData.clientPortName);
Greeter greeter = service.getPort(portName, Greeter.class);
String propStr = "celtix.security.configurer"
+ ".celtix.{http://objectweb.org/hello_world_soap_http_secure}"
+ Matrix.TWO_TIER_TESTS[index].clientData.clientServiceName + "/"
+ Matrix.TWO_TIER_TESTS[index].clientData.clientPortName + ".http-client";
if (Matrix.TWO_TIER_TESTS[index].clientData.securityConfigurer != null) {