Flowdock
method

perform_invocation

Importance_0
v1.2.6 - Show latest stable - 0 notes - Class: ActionWebService::Client::Soap
perform_invocation(method_name, args) protected

No documentation

This method has no description. You can help the Ruby on Rails community by adding new notes.

Hide source
# File actionwebservice/lib/action_web_service/client/soap_client.rb, line 60
        def perform_invocation(method_name, args)
          method = @api.api_methods[method_name.to_sym]
          args = method.cast_expects(args.dup) rescue args
          return_value = @driver.send(method_name, *args)
          method.cast_returns(return_value.dup) rescue return_value
        end
Register or log in to add new notes.