// This handler has to be end to get the entire soap message.
NotificationHandler notificationHandler = new NotificationHandler(this.leadContext);
this.client.addHandler(notificationHandler);
WSIFPort port = this.client.getPort();
if (this.operationName == null) {
this.operationName = this.component.getOperationName();
}
logger.info("operationName: " + operationName);
this.operation = port.createOperation(operationName);
this.inputMessage = this.operation.createInputMessage();
this.outputMessage = this.operation.createOutputMessage();
this.faultMessage = this.operation.createFaultMessage();
}