method method.to_xmlrpc
Return the XML-RPC representation of a method call
Contract
Return typewob
Parameter keyDefault valueType
argsreq
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>&#13;
 <methodName>foo</methodName>&#13;
 <params>&#13;
 <param><value><int>25</int></value></param>&#13;
 <param><value><int>15</int></value></param>&#13;
 </params>&#13;
</methodCall>"

a wob
Parameter keyDefault valueType
argsreq
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>&#13;
 <methodName>foo</methodName>&#13;
 <params>&#13;
 <param><value><int>20</int></value></param>&#13;
 <param><value><int>30</int></value></param>&#13;
 <param><value><int>40</int></value></param>&#13;
 <param><value><int>10</int></value></param>&#13;
 </params>&#13;
</methodCall>"