You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

TODO 968B

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