Android Openerp Search Request Xmlrpc
I am working on an android application which is able to connect with an openerp server and retrive the userid and also the individual fields of the different contacts of that user.
Solution 1:
try to interchange the position of method search
and execute
.The method execute
must be given before search
.Also try searchClient.callEx
instead call only like you do it above!
record = (Array[]) searchClient.callEx("execute",lp.DB_NAME, lp.uid1, lp.PASSWORD, "res.partnet.contact","search", arguments);
Post a Comment for "Android Openerp Search Request Xmlrpc"