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
This commit is contained in:
Leon Breedt
2005-07-06 22:10:35 +00:00
parent d01c44d550
commit f8be47a6a3
2 changed files with 5 additions and 0 deletions

View File

@@ -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

View File

@@ -141,6 +141,7 @@ module ActionWebService
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