hi, i want to send xmlrpc request to a program IBSng (is an accounting server), but IBSng register methods that work with xmprpc protocol only support associative array in argument.
in php i can send an associative array like this to IBSng method:
then i send xmlrcp in php language to IBSng, and it works fine.
my problem is in C programming language.
how i can send an associative array in xmlrpc-c???
anyone can help me?
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
hi, i want to send xmlrpc request to a program IBSng (is an accounting server), but IBSng register methods that work with xmprpc protocol only support associative array in argument.
in php i can send an associative array like this to IBSng method:
$params_arr = "system";
$params_arr = "passwordofsystem";
$params_arr = "ADMIN";
$params_arr ="102";
and
method name: user.delUser
then i send xmlrcp in php language to IBSng, and it works fine.
my problem is in C programming language.
how i can send an associative array in xmlrpc-c???
anyone can help me?