Open hfloyd opened 7 years ago
I think you should bind using the sample I am providing var Data2= new XmlRpcStruct() { { "LastName", "Thamma" } ,{"FirstName","Bhaskar"}}; Also you need to add CookComputing.XmlRpcV2 you can find some where here or google it.
I had the same problem, but defining my query data as a XmlRpcStruct(){} instead of Dictionary<>() worked for me. Thanks!
Thanks @crmprocorp @SoWaky , My problem solved which i stuck since 1 day using, var Data2 = new XmlRpcStruct() { { "context", argsSalesInvoice } };
When I pass a Dictionary of field names and field values into the client.ContactService.Update() method, I get an error:
The code at that line is:
return Invoke(d => d.Update(ApiKey, contactId, data));
Am I misunderstanding how to use the Update method? What sort of format does the IDictionary need to be in for this to work? I have tried
Dictionary<string, object>
andDictionary<string, string>
with the same result. Thanks for any assistance.