root / trunk / web / dojo / dojox / rpc / README @ 9
History | View | Annotate | Download (2.24 KB)
| 1 |
------------------------------------------------------------------------------- |
|---|---|
| 2 |
DojoX RPC |
| 3 |
------------------------------------------------------------------------------- |
| 4 |
Version 1.0 |
| 5 |
Release date: 07/01/2007 |
| 6 |
------------------------------------------------------------------------------- |
| 7 |
Project state: |
| 8 |
yahoo.smd: production (but for old dojo.rpc, not the dojox.service.Rpc) |
| 9 |
Service.js: beta - this will become dojo.rpc.Service eventually and replace |
| 10 |
the existing rpc system |
| 11 |
JsonRPC.js: beta - plugins for json-rpc for the rpc system |
| 12 |
Rest.js: beta - plugin for REST style services for the rpc system |
| 13 |
JsonRest.js: beta - A module for tracking and persisting changes to JSON objects |
| 14 |
through REST. |
| 15 |
OfflineRest.js: alpha - A module for storing REST changes locally as write- |
| 16 |
back cache for offline and intermittent connection situations |
| 17 |
ProxiedPath.js: beta - plugin for the PATH envelope to work with a simple PHP proxy |
| 18 |
Client.js: alpha - A module for maintaining per page/tab client sessions and |
| 19 |
deterministic message sequencing with a server. |
| 20 |
|
| 21 |
SMDLibrary contains smd files representing external services. |
| 22 |
|
| 23 |
------------------------------------------------------------------------------- |
| 24 |
Project authors |
| 25 |
Dustin Machi |
| 26 |
Kris Zyp |
| 27 |
Revin Guillen |
| 28 |
------------------------------------------------------------------------------- |
| 29 |
Project description |
| 30 |
|
| 31 |
Extra utilities for use with dojo.rpc as well as additional smd descriptions |
| 32 |
for specific services. |
| 33 |
------------------------------------------------------------------------------- |
| 34 |
Dependencies: |
| 35 |
|
| 36 |
Dojo Core (package loader, dojo.rpc). |
| 37 |
------------------------------------------------------------------------------- |
| 38 |
Documentation |
| 39 |
|
| 40 |
See RPC documentation at http://dojotoolkit.org/ |
| 41 |
|
| 42 |
------------------------------------------------------------------------------- |
| 43 |
Installation instructions |
| 44 |
|
| 45 |
Grab the following from the Dojo SVN Repository: |
| 46 |
http://svn.dojotoolkit.org/var/src/dojo/dojox/trunk/rpc/* |
| 47 |
|
| 48 |
Install into the following directory structure: |
| 49 |
/dojox/rpc/ |
| 50 |
|
| 51 |
...which should be at the same level as your Dojo checkout. |
| 52 |
|
| 53 |
The use of the actual utilities varies, but typically additional software |
| 54 |
will be included with dojo.require() and smd files for services can be loaded |
| 55 |
manually with an xhr request or can be provided by url to the service when created |
| 56 |
|