2005-05-20 01:36:02 +00:00
|
|
|
= Post-1.0
|
2005-05-31 02:50:02 +00:00
|
|
|
- Document/Literal SOAP support
|
|
|
|
- URL-based dispatching, URL identifies method
|
|
|
|
|
2005-05-20 01:36:02 +00:00
|
|
|
- Add :rest dispatching mode, a.l.a. Backpack API. Clean up dispatching
|
|
|
|
in general. Support vanilla XML-format as a "Rails" protocol?
|
2005-05-31 02:50:02 +00:00
|
|
|
XML::Simple deserialization into params?
|
|
|
|
|
|
|
|
web_service_dispatching_mode :rest
|
|
|
|
|
|
|
|
def method1(params)
|
|
|
|
end
|
|
|
|
|
|
|
|
def method2(params)
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
|
|
/ws/method1
|
|
|
|
<xml>
|
|
|
|
/ws/method2
|
|
|
|
<yaml>
|
2005-04-03 23:12:34 +00:00
|
|
|
|
2005-05-20 01:36:02 +00:00
|
|
|
- Allow locking down a controller to only accept messages for a particular
|
|
|
|
protocol. This will allow us to generate fully conformant error messages
|
|
|
|
in cases where we currently fudge it if we don't know the protocol.
|
|
|
|
|
|
|
|
- Allow AWS user to participate in typecasting, so they can centralize
|
|
|
|
workarounds for buggy input in one place
|
2005-03-02 22:55:00 +00:00
|
|
|
|
2005-02-18 10:35:25 +00:00
|
|
|
= Refactoring
|
|
|
|
- Don't have clean way to go from SOAP Class object to the xsd:NAME type
|
|
|
|
string -- NaHi possibly looking at remedying this situation
|