aboutsummaryrefslogtreecommitdiffstats
path: root/actionwebservice/lib/action_web_service/dispatcher/action_controller_dispatcher.rb
diff options
context:
space:
mode:
authorLeon Breedt <bitserf@gmail.com>2005-03-28 03:20:13 +0000
committerLeon Breedt <bitserf@gmail.com>2005-03-28 03:20:13 +0000
commit594063f23cf8e7cecd24329e801992784f420b55 (patch)
treed52e9a6fc0521d51fcc3875162adf0411ee6caa0 /actionwebservice/lib/action_web_service/dispatcher/action_controller_dispatcher.rb
parent439a216dcb65ac83d86ca04bb898e1797a87ce70 (diff)
downloadrails-594063f23cf8e7cecd24329e801992784f420b55.tar.gz
rails-594063f23cf8e7cecd24329e801992784f420b55.tar.bz2
rails-594063f23cf8e7cecd24329e801992784f420b55.zip
generalize casting code to be used by both SOAP and XML-RPC (previously only XML-RPC). switch
to better model for API methods, and improve the ability to generate protocol requests/response, will be required by upcoming scaffolding. git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@1030 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'actionwebservice/lib/action_web_service/dispatcher/action_controller_dispatcher.rb')
-rw-r--r--actionwebservice/lib/action_web_service/dispatcher/action_controller_dispatcher.rb37
1 files changed, 19 insertions, 18 deletions
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 7080f813d4..5289b0b84d 100644
--- a/actionwebservice/lib/action_web_service/dispatcher/action_controller_dispatcher.rb
+++ b/actionwebservice/lib/action_web_service/dispatcher/action_controller_dispatcher.rb
@@ -76,7 +76,10 @@ module ActionWebService # :nodoc:
unless self.class.web_service_exception_reporting
exception = DispatcherError.new("Internal server error (exception raised)")
end
- response = request.protocol.marshal_response(request.method_name, exception, exception.class)
+ api_method = request.api_method ? request.api_method.dup : nil
+ api_method ||= request.api.dummy_api_method_instance(request.method_name)
+ api_method.instance_eval{ @returns = [ exception.class ] }
+ response = request.protocol.marshal_response(api_method, exception)
send_web_service_response(response)
else
if self.class.web_service_exception_reporting
@@ -95,7 +98,7 @@ module ActionWebService # :nodoc:
end
@session ||= {}
@assigns ||= {}
- @params['action'] = invocation.api_method_name.to_s
+ @params['action'] = invocation.api_method.name.to_s
if before_action == false
raise(DispatcherError, "Method filtered")
end
@@ -224,18 +227,18 @@ module ActionWebService # :nodoc:
# APIs
apis.each do |api_name, values|
api = values[0]
- api.api_methods.each do |name, info|
+ api.api_methods.each do |name, method|
gen = lambda do |msg_name, direction|
xm.message('name' => msg_name) do
sym = nil
if direction == :out
- returns = info[:returns]
+ returns = method.returns
if returns
binding = marshaler.register_type(returns[0])
xm.part('name' => 'return', 'type' => binding.qualified_type_name('typens'))
end
else
- expects = info[:expects]
+ expects = method.expects
i = 1
expects.each do |type|
if type.is_a?(Hash)
@@ -251,7 +254,7 @@ module ActionWebService # :nodoc:
end
end
end
- public_name = api.public_api_method_name(name)
+ public_name = method.public_name
gen.call(public_name, :in)
gen.call("#{public_name}Response", :out)
end
@@ -259,11 +262,10 @@ module ActionWebService # :nodoc:
# Port
port_name = port_name_for(global_service_name, api_name)
xm.portType('name' => port_name) do
- api.api_methods.each do |name, info|
- public_name = api.public_api_method_name(name)
- xm.operation('name' => public_name) do
- xm.input('message' => "typens:#{public_name}")
- xm.output('message' => "typens:#{public_name}Response")
+ api.api_methods.each do |name, method|
+ xm.operation('name' => method.public_name) do
+ xm.input('message' => "typens:#{method.public_name}")
+ xm.output('message' => "typens:#{method.public_name}Response")
end
end
end
@@ -272,16 +274,15 @@ module ActionWebService # :nodoc:
binding_name = binding_name_for(global_service_name, api_name)
xm.binding('name' => binding_name, 'type' => "typens:#{port_name}") do
xm.soap(:binding, 'style' => 'rpc', 'transport' => SoapHttpTransport)
- api.api_methods.each do |name, info|
- public_name = api.public_api_method_name(name)
- xm.operation('name' => public_name) do
+ api.api_methods.each do |name, method|
+ xm.operation('name' => method.public_name) do
case web_service_dispatching_mode
when :direct, :layered
- soap_action = soap_action_base + "/api/" + public_name
+ soap_action = soap_action_base + "/api/" + method.public_name
when :delegated
soap_action = soap_action_base \
+ "/" + api_name.to_s \
- + "/" + public_name
+ + "/" + method.public_name
end
xm.soap(:operation, 'soapAction' => soap_action)
xm.input do
@@ -337,8 +338,8 @@ module ActionWebService # :nodoc:
end
def traverse_custom_types(api, marshaler, &block)
- api.api_methods.each do |name, info|
- expects, returns = info[:expects], info[:returns]
+ api.api_methods.each do |name, method|
+ expects, returns = method.expects, method.returns
expects.each{|x| traverse_custom_type_spec(marshaler, x, &block)} if expects
returns.each{|x| traverse_custom_type_spec(marshaler, x, &block)} if returns
end