|
Revision 1375, 0.9 kB
(checked in by bitserf, 4 years ago)
|
fix scaffolding template paths (Pathname does weird things on Win32)
|
| Line | |
|---|
| 1 |
= Post-1.0 |
|---|
| 2 |
- Document/Literal SOAP support |
|---|
| 3 |
- URL-based dispatching, URL identifies method |
|---|
| 4 |
|
|---|
| 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? |
|---|
| 8 |
|
|---|
| 9 |
web_service_dispatching_mode :rest |
|---|
| 10 |
|
|---|
| 11 |
def method1(params) |
|---|
| 12 |
end |
|---|
| 13 |
|
|---|
| 14 |
def method2(params) |
|---|
| 15 |
end |
|---|
| 16 |
|
|---|
| 17 |
|
|---|
| 18 |
/ws/method1 |
|---|
| 19 |
<xml> |
|---|
| 20 |
/ws/method2 |
|---|
| 21 |
<yaml> |
|---|
| 22 |
|
|---|
| 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. |
|---|
| 26 |
|
|---|
| 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 |
|---|