aboutsummaryrefslogtreecommitdiffstats
path: root/actionwebservice/TODO
diff options
context:
space:
mode:
authorLeon Breedt <bitserf@gmail.com>2005-02-19 08:29:42 +0000
committerLeon Breedt <bitserf@gmail.com>2005-02-19 08:29:42 +0000
commit418d487020d24e69b528fdbedfecb20a87f99fcb (patch)
tree1956d6982123df1638bdef8274dff50ae71b25c2 /actionwebservice/TODO
parente7499638d06023ae493d14ec1dc4f58bad8ac168 (diff)
downloadrails-418d487020d24e69b528fdbedfecb20a87f99fcb.tar.gz
rails-418d487020d24e69b528fdbedfecb20a87f99fcb.tar.bz2
rails-418d487020d24e69b528fdbedfecb20a87f99fcb.zip
refactoring:
* move dispatching out of the Container into Dispatcher, it makes more sense for Container to only contain the list of web services defined in it. * collapse Wsdl and ActionController "routers" into an ActionController-specific module, no advantage to having them seperate as they were quite tightly coupled. rename to Dispatcher, to avoi confusion with Routing. * add a "_thing" suffix to concept-specific filenames. this is so that we don't end up with many soap.rb files, for example. * remove "virtual invocation" support. adds complexity, and it doesn't seem to add any value. git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@679 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'actionwebservice/TODO')
-rw-r--r--actionwebservice/TODO13
1 files changed, 6 insertions, 7 deletions
diff --git a/actionwebservice/TODO b/actionwebservice/TODO
index e753fbb1d7..35c6c66f11 100644
--- a/actionwebservice/TODO
+++ b/actionwebservice/TODO
@@ -1,8 +1,11 @@
= 0.4.0 Tasks
- add ActiveRecord-like logging that includes timing information
- - rename project to 'actionwebservice', Action Web Service
= Post-0.4.0 Tasks
+ - support namespaced custom types in WSDL in a way that interoperates
+ with .NET (.NET croaks on '::' currently). perhaps a transform
+ that maps Ruby::Class to Ruby.Class and back.
+
- relax type-checking for XML-RPC, and perform casts between base types if there
are mismatches (i.e. String received when Integer expected, or vice-versa)
@@ -23,12 +26,8 @@
web_service :xmlrpc { BloggingServices.new(@request) }
end
- - supported namespaced custom types in WSDL in a way that interoperates
- with .NET (.NET croaks on '::' currently)
-
- - simplification: collapse Router::ActionController, Router::Wsdl
- and API::ActionController into Container::ActionController.
- the seperation has gained us nothing.
+ - verify that cookie support works, and add cookie-authenticated
+ service examples. test with .NET.
= Low priority tasks
- add better type mapping tests for XML-RPC