diff --git a/actionwebservice/CHANGELOG b/actionwebservice/CHANGELOG index d49fc60b16c5448029689338b2d0aeee7d3ccb26..65297433fbdf3eb0db6b579ec70754366ec25c7f 100644 --- a/actionwebservice/CHANGELOG +++ b/actionwebservice/CHANGELOG @@ -1,5 +1,7 @@ *SVN* +* Removed invocation of deprecated before_action and around_action filter methods. Corresponding before_invocation and after_invocation methods should be used instead. #6275 [Kent Sibilev] + * Provide access to the underlying SOAP driver. #6212 [bmilekic, Kent Sibilev] * Deprecation: update docs. #5998 [jakob@mentalized.net, Kevin Clark] diff --git a/actionwebservice/lib/action_web_service/dispatcher/action_controller_dispatcher.rb b/actionwebservice/lib/action_web_service/dispatcher/action_controller_dispatcher.rb index 2c7d5a094800cfbb3855a0a64556dd37ed5e5507..85773a617d8f686265525f254ecdfcca09e9a78f 100644 --- a/actionwebservice/lib/action_web_service/dispatcher/action_controller_dispatcher.rb +++ b/actionwebservice/lib/action_web_service/dispatcher/action_controller_dispatcher.rb @@ -106,13 +106,7 @@ def web_service_direct_invoke(invocation) invocation.method_named_params.each do |name, value| params[name] = value end - params['action'] = invocation.api_method.name.to_s - if before_action == false - raise(DispatcherError, "Method filtered") - end - return_value = web_service_direct_invoke_without_controller(invocation) - after_action - return_value + web_service_direct_invoke_without_controller(invocation) end def log_request(ws_request, body)