Return the XML-RPC representation of a method call
Contract| Return type | wob | | Parameter key | Default value | Type | | args | req | | Water Contract<method method.to_xmlrpc
args=req/> | |
See also: to_xmlrpc
Returns the XML-RPC representation of a _subject of type
method . Notice that objects of various data types are
expressed in their corresponding XML-RPC formats.
<method foo a=req b=req />.<to_xmlrpc args=<thing a=25 b=15 /> />
 | "<methodCall>
<methodName>foo</methodName>
<params>
<param><value><int>25</int></value></param>
<param><value><int>15</int></value></param>
</params>
</methodCall>" |
a wob
| Parameter key | Default value | Type |
| args | req |
The args field should be an object with fields that correspond
to the fields of the method call. Notice that the fields are matched
up by name so that the order of the parameters in the
args field is not significant.
<method foo a=req b=req c=opt d="nowhere" />.
<to_xmlrpc args=<thing d=10 a=20 b=30 c=40 /> />
 | "<methodCall>
<methodName>foo</methodName>
<params>
<param><value><int>20</int></value></param>
<param><value><int>30</int></value></param>
<param><value><int>40</int></value></param>
<param><value><int>10</int></value></param>
</params>
</methodCall>" |
© Copyright 2007 Clear Methods, Inc.