Changes between Version 1 and Version 2 of ExampleUsingXmlRpcCompliantTypes


Ignore:
Timestamp:
10/06/06 17:35:13 (18 years ago)
Author:
lauer
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • ExampleUsingXmlRpcCompliantTypes

    v1 v2  
    2828'''Client side''' 
    2929     
    30  - create a remote client the use the API by simply calling a single method  
     30 - create a remote client the use the API by simply calling a method like a local call.  
    3131 
    3232{{{ 
     
    3636}}}  
    3737 
     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.