Skip to Content
Menu
You need to be registered to interact with the community.
This question has been flagged
3844 Prikazi

I am trying to query OpenERP objects using xml-rpc.net from ASP.NET MVC C# to authentificate users.

Here is how im trying to do:

String[] condition = new String[] { "name", "=", "XXXX" };
        ArrayList lstFilters = new ArrayList();
        lstFilters.Add(condition);

        IOpenErp OpenERPOperations = XmlRpcProxyGen.Create<IOpenErp>();
        var oerp_results = OpenERPOperations.search(OERP_DB, UserID, OERP_PASSWORD, "res.users", "read", lstFilters.ToArray());

The thing is that i was reading through documentation but didnt understood how can i get object attributes for a specific object like users.

There is a web service CRUD example for res.partners but not for anything else.

Is there a resource where i can get more into working with objects of OpenERP, like understanding the concepts behind res.xxxxxx and other object types?

Avatar
Opusti
Related Posts Odgovori Prikazi Aktivnost
3
jul. 25
7180
1
maj 25
1214
2
jan. 25
1997
1
avg. 24
1951
1
jul. 24
2776