Definition def = WSIFUtils.readWSDL(null, wsdlLocation);
Service service = WSIFUtils.selectService(def, serviceNS, serviceName);
PortType portType = WSIFUtils.selectPortType(def, portTypeNS, portTypeName);
WSIFServiceFactory factory = WSIFServiceFactory.newInstance();
WSIFService dpf = factory.getService(def, service, portType);
WSIFPort port = (portName == null) ? dpf.getPort() : dpf.getPort(portName);
System.out.println("HeadersTest executing getQuote for \"\"" + operationName);
WSIFOperation operation =
port.createOperation("getQuote", inputName, outputName);