diff options
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 |