Ir al contenido
Menú
Se marcó esta pregunta
1 Responder
7839 Vistas

Hi,

I have to connect with odoo in my localhost or my nearest system(192.168.0.24). 

So what should be my host url?

$url = <insert server URL>;

i tried "localhost:8069" and "192.168.0.24:8069"

$info = ripcord::client('https://demo.odoo.com/start')->start();

here i tried "localhost:8069/xmlrpc" and "192.168.0.24:8069/xmlrpc"

both not working. I don't know is it my host name is causing it.

What might be the problem?

what do "/start" stand for?

Avatar
Descartar
Mejor respuesta

Hi Akhil 

Please try this


import xmlrpclib

dbname = 'demo'

username = 'admin'

pwd = 'admin'

server = 'http://127.0.0.1:8069'

sock_common = xmlrpclib.ServerProxy(server + '/xmlrpc/common')

sock = xmlrpclib.ServerProxy(server + '/xmlrpc/object')

uid = sock_common.login(dbname, username, pwd)


recored_id = sock.execute(dbname, uid, pwd, 'model', 'search', [('name', '=', name])

print ">>>>>>>>>>>>", recored_id

Avatar
Descartar
Publicaciones relacionadas Respuestas Vistas Actividad
2
nov 16
13002
1
nov 16
4996
1
nov 22
3546
0
mar 18
3821
1
mar 15
6960