From 1155ea0aa3c25b4683c6343162cd49dbe0fec094 Mon Sep 17 00:00:00 2001 From: Leon Breedt Date: Tue, 5 Apr 2005 21:37:48 +0000 Subject: initial go at making :layered dispatching generate WSDL for SOAP, and have :layered process SOAP method calls correctly as well, may be unstable git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@1097 5ecf4fe2-1ee6-0310-87b1-e25e094e27de --- actionwebservice/README | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) (limited to 'actionwebservice/README') diff --git a/actionwebservice/README b/actionwebservice/README index d6bcea7534..8f4588cdf9 100644 --- a/actionwebservice/README +++ b/actionwebservice/README @@ -162,11 +162,10 @@ This mode is similar to _delegated_ mode, in that multiple web service objects can be attached to one controller, however, all protocol requests are sent to a single endpoint. -This mode is only usable by XML-RPC. In this mode, method names can contain -_prefixes_, which will indicate which web service object implements the API -identified by that prefix. +Use this mode when you want to share code between XML-RPC and SOAP clients, +for APIs where the XML-RPC method names have prefixes. An example of such +a method name would be blogger.newPost. -The _prefix_ can be any word, followed by a period. ==== Layered dispatching example @@ -192,8 +191,8 @@ The _prefix_ can be any word, followed by a period. end -For this example, a remote call for a method with a name like -mt.getCategories will be dispatched as the getCategories +For this example, an XML-RPC call for a method with a name like +mt.getCategories will be sent to the getCategories method on the :mt service. -- cgit v1.2.3