Hannes Wallnoefer wrote:
> Ralph,
>
> the XML-RPC spec ( http://www.xmlrpc.com/spec ) says:
>
> "If the procedure call has parameters, the <methodCall> must contain a
> <params> sub-item. The <params> sub-item can contain any number of
> <param>s, each of which has a <value>."
>
> Which means that XML-RPC only supports sending parameter by order, not
> by name. You can send named parameters within a <struct> element, but
> the parameter list itself always is an ordered list/array.
> In which way does phpgroupware require sending named parameters?
>
> Hannes
>
Ooops. My fault, I didn't read the phpgroupware sourcecode carefully enough.
Phpgroupware requires it's parameters this way:
Vector
|
+---- Hashtable
|
+-------param[Name1]=value
|
+-------param[Name2]=value
ralph