removing log dir from .gitignore
[monkeycharger.git] / vendor / rails / actionwebservice / TODO
blob7c022c14cbc25defa3fbc3dd1c80061cfbf4009d
1 = Post-1.0
2   - Document/Literal SOAP support
3     - URL-based dispatching, URL identifies method
5   - Add :rest dispatching mode, a.l.a. Backpack API. Clean up dispatching
6     in general. Support vanilla XML-format as a "Rails" protocol?
7     XML::Simple deserialization into params?
9       web_service_dispatching_mode :rest
11       def method1(params)
12       end
14       def method2(params)
15       end
18       /ws/method1
19         <xml>
20       /ws/method2
21         <yaml>
23   - Allow locking down a controller to only accept messages for a particular
24     protocol.  This will allow us to generate fully conformant error messages
25     in cases where we currently fudge it if we don't know the protocol.
27   - Allow AWS user to participate in typecasting, so they can centralize
28     workarounds for buggy input in one place
29   
30 = Refactoring
31   - Don't have clean way to go from SOAP Class object to the xsd:NAME type
32     string -- NaHi possibly looking at remedying this situation