diff options
author | Leon Breedt <bitserf@gmail.com> | 2005-05-31 02:50:02 +0000 |
---|---|---|
committer | Leon Breedt <bitserf@gmail.com> | 2005-05-31 02:50:02 +0000 |
commit | 46e68538c08d751554b2c6f512659993ef62c218 (patch) | |
tree | a3b21b2056b3e6c7862aae84706633d6bf83bbac /actionwebservice/TODO | |
parent | 19da52d69db92995eb518875b60e72b61f83469a (diff) | |
download | rails-46e68538c08d751554b2c6f512659993ef62c218.tar.gz rails-46e68538c08d751554b2c6f512659993ef62c218.tar.bz2 rails-46e68538c08d751554b2c6f512659993ef62c218.zip |
fix scaffolding template paths (Pathname does weird things on Win32)
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@1375 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'actionwebservice/TODO')
-rw-r--r-- | actionwebservice/TODO | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/actionwebservice/TODO b/actionwebservice/TODO index c78cffb2e1..7c022c14cb 100644 --- a/actionwebservice/TODO +++ b/actionwebservice/TODO @@ -1,6 +1,24 @@ = Post-1.0 + - Document/Literal SOAP support + - URL-based dispatching, URL identifies method + - Add :rest dispatching mode, a.l.a. Backpack API. Clean up dispatching in general. Support vanilla XML-format as a "Rails" protocol? + XML::Simple deserialization into params? + + web_service_dispatching_mode :rest + + def method1(params) + end + + def method2(params) + end + + + /ws/method1 + <xml> + /ws/method2 + <yaml> - Allow locking down a controller to only accept messages for a particular protocol. This will allow us to generate fully conformant error messages |