From f8be47a6a3088440f71b2995c1402020d9df13d3 Mon Sep 17 00:00:00 2001 From: Leon Breedt Date: Wed, 6 Jul 2005 22:10:35 +0000 Subject: [PATCH] ensure the second manual WS request of scaffolding contains the same state as the original request as much as possible (so that things relying on hostnames &c will keep on working) git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@1743 5ecf4fe2-1ee6-0310-87b1-e25e094e27de --- actionwebservice/CHANGELOG | 4 ++++ actionwebservice/lib/action_web_service/scaffolding.rb | 1 + 2 files changed, 5 insertions(+) diff --git a/actionwebservice/CHANGELOG b/actionwebservice/CHANGELOG index a7404078c4..5a91d7d07a 100644 --- a/actionwebservice/CHANGELOG +++ b/actionwebservice/CHANGELOG @@ -1,3 +1,7 @@ +*SVN* + +* Fix scaffolding for Action Pack controller changes + *0.8.0* (6 July, 2005) * Fix WSDL generation by aliasing #inherited instead of trying to overwrite it, or the WSDL action may end up not being defined in the controller diff --git a/actionwebservice/lib/action_web_service/scaffolding.rb b/actionwebservice/lib/action_web_service/scaffolding.rb index da3d6c137c..3f0399405c 100644 --- a/actionwebservice/lib/action_web_service/scaffolding.rb +++ b/actionwebservice/lib/action_web_service/scaffolding.rb @@ -141,6 +141,7 @@ def public_method_name(service_name, method_name) def prepare_request(new_request, service_name, method_name) new_request.parameters.update(request.parameters) + request.env.each{ |k, v| new_request.env[k] = v unless new_request.env.has_key?(k) } if web_service_dispatching_mode == :layered && @protocol.is_a?(ActionWebService::Protocol::Soap::SoapProtocol) new_request.env['HTTP_SOAPACTION'] = "/\#{controller_name()}/\#{service_name}/\#{method_name}" end -- GitLab