From 418d487020d24e69b528fdbedfecb20a87f99fcb Mon Sep 17 00:00:00 2001 From: Leon Breedt Date: Sat, 19 Feb 2005 08:29:42 +0000 Subject: refactoring: * move dispatching out of the Container into Dispatcher, it makes more sense for Container to only contain the list of web services defined in it. * collapse Wsdl and ActionController "routers" into an ActionController-specific module, no advantage to having them seperate as they were quite tightly coupled. rename to Dispatcher, to avoi confusion with Routing. * add a "_thing" suffix to concept-specific filenames. this is so that we don't end up with many soap.rb files, for example. * remove "virtual invocation" support. adds complexity, and it doesn't seem to add any value. git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@679 5ecf4fe2-1ee6-0310-87b1-e25e094e27de --- actionwebservice/lib/action_web_service/client.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'actionwebservice/lib/action_web_service/client.rb') diff --git a/actionwebservice/lib/action_web_service/client.rb b/actionwebservice/lib/action_web_service/client.rb index 77f934882c..2a1e33054d 100644 --- a/actionwebservice/lib/action_web_service/client.rb +++ b/actionwebservice/lib/action_web_service/client.rb @@ -1,3 +1,3 @@ require 'action_web_service/client/base' -require 'action_web_service/client/soap' -require 'action_web_service/client/xmlrpc' +require 'action_web_service/client/soap_client' +require 'action_web_service/client/xmlrpc_client' -- cgit v1.2.3