please ingnore my previous post.
this is my problem now:
sniffing the traffic, i noticed that the xmlrpc serialization made
by the package is something like this:
<methodCall>
<methodName>KDesktop.popup.ExecuteCommand</methodName>
<params>
<param><value>XXXXXXX</value></param>
</params>
</methodCall>
what I need is to serialize also the dataType of the paramaters
passed in the vector. I can immagine that it hasn't been done
because the generality of the container Vector, storing Objects.
But since other xmlrpc implementations provide also this (the
python one, for example), i was wondering if it is possible to
have it.
what i'd like to obtain is:
<param><value><STRING>XXXXXXX</STRING></value></param>