diff options
author | Leon Breedt <bitserf@gmail.com> | 2005-08-12 16:38:42 +0000 |
---|---|---|
committer | Leon Breedt <bitserf@gmail.com> | 2005-08-12 16:38:42 +0000 |
commit | eaadd18f3f2c8e59a79f451e706aa15447c10018 (patch) | |
tree | a529087aef158e38c1d9ea394d74ce7dfd4a9a95 /actionwebservice/CHANGELOG | |
parent | c005ed17a399a0a37c40c5146c4876abcd51b249 (diff) | |
download | rails-eaadd18f3f2c8e59a79f451e706aa15447c10018.tar.gz rails-eaadd18f3f2c8e59a79f451e706aa15447c10018.tar.bz2 rails-eaadd18f3f2c8e59a79f451e706aa15447c10018.zip |
Add API::Base.soap_client and API::Base.xmlrpc_client helper methods to construct
an internal client.
Example:
{{{
$ ./script/console
>> c = MyApi.soap_client 'http://app.com/ws/api'
>> c.method arg1, arg2
}}}
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@1994 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'actionwebservice/CHANGELOG')
-rw-r--r-- | actionwebservice/CHANGELOG | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/actionwebservice/CHANGELOG b/actionwebservice/CHANGELOG index 8b2d63e804..e21a9e73ba 100644 --- a/actionwebservice/CHANGELOG +++ b/actionwebservice/CHANGELOG @@ -1,5 +1,7 @@ *SVN* +* Added ActionWebService::API::Base.soap_client and ActionWebService::API::Base.xmlrpc_client helper methods to create the internal clients for an API, useful for testing from ./script/console + * ActionWebService now always returns UTF-8 responses. *0.8.1* (11 July, 2005) |