Changes between Version 1 and Version 2 of ExampleUsingXmlRpcCompliantTypes
- Timestamp:
- 10/06/06 17:35:13 (18 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
ExampleUsingXmlRpcCompliantTypes
v1 v2 28 28 '''Client side''' 29 29 30 - create a remote client the use the API by simply calling a single method30 - create a remote client the use the API by simply calling a method like a local call. 31 31 32 32 {{{ … … 36 36 }}} 37 37 38 == Special type treatment == 39 40 - conversions for types Integer, Double and Boolean to their primitive counterparts and vice versa is done automatically 41 42 - instead of solely using java type Vector for XML-RPC type ARRAY, also every type implementing Collection can be used (i.e., as return values). 43 44 - instead of solely using java type Hashtable for XML-RPC type STRUCT, also java type Map can be used.