_wsdl = wsdl;
if (_wsdl != null) {
for (WSDLBinding binding : _wsdl.getBindings()) {
WSDLPortType portType = binding.getPortType();
if (portType != null && portType.getName().equals(_portName)) {
for (WSDLBindingOperation operation : binding.getOperations()) {
if (operation.getName().equals(_operationName)) {
_bindingOperation = operation;
break;
}