Skip to Content
Меню
Вам необхідно зареєструватися, щоб взаємодіяти зі спільнотою.
Це запитання позначене
2 Відповіді
8404 Переглядів

I am building a mobile webapp and need to pull and push data to OpenERP V7.

If I understood the only way to communicate with OpenERP is XML-RPC or JSON-RPC.

Questions: 1/ I found document with XMLRPC but not for JSON. Any idea where I can get it ? 2/ Testing XMLRPC with Javascript and jquery.xmlrpc.js

I wrote :

  $.xmlrpc({
    url: 'http://mySErverName:8069/xmlrpc/common',
    methodName: 'login',
    params: ['myDb', 'admin', 'password'],
    success: function(response, status, jqXHR) { alert('OK')},
    error: function(jqXHR, status, error) { alert('Error : ' + error.debug ) }
    });

But when executing, function error is executed but error has no value inside. So I don't what's wrong.

What is the best way to use xmlrpc with Javascript ? What is wrong with the code I posted ?

Regards, St.

Аватар
Відмінити
Найкраща відповідь

Hi,

if you're running on Odoo v8, try ti use the xmlrpc/2 API : https://www.odoo.com/documentation/8.0/api_integration.html

Additionnaly, have a look to server logs, it could be useful.

regards

Аватар
Відмінити
Найкраща відповідь

Had you got any answer about this? I have a very similar problem and can't get the solution. I need to invoke a webservice in Odoo from an html page with javascript, jquery or whatever. As I'm a nut in JS and JQuery, I copy your code and tried to invoke the login method but I got an error (inside the catch section of my code). Do you have any clue about this?

Thanks

Аватар
Відмінити
Related Posts Відповіді Переглядів Дія
1
черв. 15
4727
0
бер. 15
11591
1
бер. 17
4345
1
бер. 15
8260
2
бер. 15
10466