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 [EMAIL PROTECTED] wrote: > > hi! > > My name is ralph and i just started to experiment with > the Apache Xml-Rpc library. since i wanted to call functions > from phpgroupware i had to extend the XmlRpcClient class > to accept hashtable parameters. > I've created a patch, so maybe you find it useful. > > > regards > ralph >