Skip to Content
Odoo Menu
  • Prijavi
  • Try it free
  • Aplikacije
    Finance
    • Knjigovodstvo
    • Obračun
    • Stroški
    • Spreadsheet (BI)
    • Dokumenti
    • Podpisovanje
    Prodaja
    • CRM
    • Prodaja
    • POS Shop
    • POS Restaurant
    • Naročnine
    • Najem
    Spletne strani
    • Website Builder
    • Spletna trgovina
    • Blog
    • Forum
    • Pogovor v živo
    • eUčenje
    Dobavna veriga
    • Zaloga
    • Proizvodnja
    • PLM
    • Nabava
    • Vzdrževanje
    • Kakovost
    Kadri
    • Kadri
    • Kadrovanje
    • Odsotnost
    • Ocenjevanja
    • Priporočila
    • Vozni park
    Marketing
    • Družbeno Trženje
    • Email Marketing
    • SMS Marketing
    • Dogodki
    • Avtomatizacija trženja
    • Ankete
    Storitve
    • Projekt
    • Časovnice
    • Storitve na terenu
    • Služba za pomoč
    • Načrtovanje
    • Termini
    Produktivnost
    • Razprave
    • Odobritve
    • IoT
    • Voip
    • Znanje
    • WhatsApp
    Third party apps Odoo Studio Odoo Cloud Platform
  • Industrije
    Trgovina na drobno
    • Book Store
    • Trgovina z oblačili
    • Trgovina s pohištvom
    • Grocery Store
    • Trgovina s strojno opremo računalnikov
    • Trgovina z igračami
    Food & Hospitality
    • Bar and Pub
    • Restavracija
    • Hitra hrana
    • Guest House
    • Beverage Distributor
    • Hotel
    Nepremičnine
    • Real Estate Agency
    • Arhitekturno podjetje
    • Gradbeništvo
    • Estate Management
    • Vrtnarjenje
    • Združenje lastnikov nepremičnin
    Svetovanje
    • Računovodsko podjetje
    • Odoo Partner
    • Marketinška agencija
    • Law firm
    • Pridobivanje talentov
    • Audit & Certification
    Proizvodnja
    • Tekstil
    • Metal
    • Pohištvo
    • Hrana
    • Brewery
    • Poslovna darila
    Health & Fitness
    • Športni klub
    • Trgovina z očali
    • Fitnes center
    • Wellness Practitioners
    • Lekarna
    • Frizerski salon
    Trades
    • Handyman
    • IT Hardware & Support
    • Sistemi sončne energije
    • Izdelovalec čevljev
    • Čistilne storitve
    • HVAC Services
    Ostali
    • Neprofitna organizacija
    • Agencija za okolje
    • Najem oglasnih panojev
    • Fotografija
    • Najem koles
    • Prodajalec programske opreme
    Browse all Industries
  • Skupnost
    Learn
    • Tutorials
    • Dokumentacija
    • Certifikati
    • Šolanje
    • Blog
    • Podcast
    Empower Education
    • Education Program
    • Scale Up! Business Game
    • Visit Odoo
    Get the Software
    • Prenesi
    • Compare Editions
    • Releases
    Collaborate
    • Github
    • Forum
    • Dogodki
    • Prevodi
    • Become a Partner
    • Services for Partners
    • Register your Accounting Firm
    Get Services
    • Find a Partner
    • Find an Accountant
    • Meet an advisor
    • Implementation Services
    • Sklici kupca
    • Podpora
    • Upgrades
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Get a demo
  • Določanje cen
  • Pomoč

Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:

  • CRM
  • e-Commerce
  • Knjigovodstvo
  • Zaloga
  • PoS
  • Projekt
  • MRP
All apps
You need to be registered to interact with the community.
All Posts People Badges
Ključne besede (View all)
odoo accounting v14 pos v15
About this forum
You need to be registered to interact with the community.
All Posts People Badges
Ključne besede (View all)
odoo accounting v14 pos v15
About this forum
Pomoč

API create_connection error (Name or service not known) to Odoo online server

Naroči se

Get notified when there's activity on this post

This question has been flagged
api
1 Odgovori
9325 Prikazi
Avatar
Fausto R.

Hello
I am following the suggestions from this post (https://www.odoo.com/forum/help-1/question/is-the-xml-rpc-api-available-on-openerp-online-915) and using the sample code from openerplib, as follow

import openerplib

DATABASE = 'mydb'
USERNAME = 'admin'
PASSWORD = 'mypass'
SERVER = 'https://' + DATABASE + '.my.openerp.com'

connection = openerplib.get_connection(hostname=SERVER, \
    database=DATABASE, login=USERNAME, password=PASSWORD)
user_model = connection.get_model("res.user")
print user_model
ids = user_model.search([("login", "=", "admin")])
user_info = user_model.read(ids[0], ["name"])
print user_info["name"]
# will print "Administrator"

But getting a connection error as detailed below

<openerplib.main.Model object at 0xb70376cc>
Traceback (most recent call last):
  File "odoo-t2.py", line 12, in <module>
    ids = user_model.search([("login", "=", "admin")])
  File "build/bdist.linux-i686/egg/openerplib/main.py", line 305, in proxy
  File "build/bdist.linux-i686/egg/openerplib/main.py", line 243, in check_login
  File "build/bdist.linux-i686/egg/openerplib/main.py", line 180, in proxy
  File "build/bdist.linux-i686/egg/openerplib/main.py", line 83, in send
  File "/usr/lib/python2.7/xmlrpclib.py", line 1224, in __call__
    return self.__send(self.__name, args)
  File "/usr/lib/python2.7/xmlrpclib.py", line 1578, in __request
    verbose=self.__verbose
  File "/usr/lib/python2.7/xmlrpclib.py", line 1264, in request
    return self.single_request(host, handler, request_body, verbose)
  File "/usr/lib/python2.7/xmlrpclib.py", line 1292, in single_request
    self.send_content(h, request_body)
  File "/usr/lib/python2.7/xmlrpclib.py", line 1439, in send_content
    connection.endheaders(request_body)
  File "/usr/lib/python2.7/httplib.py", line 997, in endheaders
    self._send_output(message_body)
  File "/usr/lib/python2.7/httplib.py", line 850, in _send_output
    self.send(msg)
  File "/usr/lib/python2.7/httplib.py", line 812, in send
    self.connect()
  File "/usr/lib/python2.7/httplib.py", line 793, in connect
    self.timeout, self.source_address)
  File "/usr/lib/python2.7/socket.py", line 553, in create_connection
    for res in getaddrinfo(host, port, 0, SOCK_STREAM):
socket.gaierror: [Errno -2] Name or service not known

 

I have tried also with xmlrpclib and oerplib, with similar error results

This is the sample code using plain xmlrpclib (this is the one I'd like to see working !!!)

server = ServerProxy(SERVER + '/xmlrpc/common')
user_id = server.login(DATABASE, USERNAME, PASSWORD)

server = ServerProxy(SERVER + '/xmlrpc/object')
user_ids = server.execute(DATABASE, user_id, PASSWORD,
    'res.users', 'search', []
)

users = server.execute(DATABASE, user_id, PASSWORD,
    'res.users', 'read', user_ids, []
)

for user in users:
    print(user['id'], user['name'])

 

 

I should be missing something very trivial or connectiong to Odoo online requires something else?

Thanks for your support on my first steps into Odoo API land,

Fausto

 

0
Avatar
Opusti
Avatar
Anabela Damas
Best Answer

Hi, 

A python to create users in my Openerp : 

# encoding: utf-8

from base64 import b64decode
import time
import xml.etree.ElementTree as ET
import datetime
from random import randint
from pprint import pprint
from xml.dom.minidom import parse, parseString
import xmlrpclib
import sys


class OpenERPClient:
    def __init__(self, host, port, username, password, dbname):
        self._host = host
        self._port = port
        self._username = username
        self._password = password
        self._dbname = dbname
        self._uid = None
        self._sock = None

    def login(self):
        sock_common = xmlrpclib.ServerProxy(
            "http://%s:%s/xmlrpc/common" % (self._host, self._port)
        )

        self._uid = sock_common.login(
            self._dbname, 
            self._username, 
            self._password)

        self._sock = xmlrpclib.ServerProxy(
            "http://%s:%s/xmlrpc/object" % (self._host, self._port)
        )

    def _exec_module_method(self, module, method, *args):
        return self._sock.execute(
            self._dbname, self._uid, self._password, 
            module, method, *args)


class TestClient(OpenERPClient):
    
    def create_user(self, data_dict):
        return self._exec_module_method(
            'res.users', 
            'create', 
            data_dict)

 

if __name__ == "__main__":

#(host, port, username, password, dbname)
    testobj = TestClient("192.168.250.110", "8069", "admin", "123qwe", "database")
    testobj.login()
    testobj.create_user({'name':'John','active': True,
                            'login': 'john',
                            'password': 'qwerty',
                            'tz': 'Europe/Lisbon', })

0
Avatar
Opusti
Fausto R.
Avtor

thanks, when using your sample, what are the host and port I should use for Odoo online?

Anabela Damas

Sorry, I don't know this script is local...

Enjoying the discussion? Don't just read, join in!

Create an account today to enjoy exclusive features and engage with our awesome community!

Prijavi
Related Posts Odgovori Prikazi Aktivnost
How do I get Product Prices with json API? Solved
api
Avatar
Avatar
1
nov. 25
3226
Has anyone integrated Helpdesk with Zoom for meeting scheduling?
api
Avatar
Avatar
1
avg. 25
1491
Using API check if Odoo is using Odoo sh or on-premises hosting. Solved
api
Avatar
Avatar
1
avg. 25
1925
External API XMLRPC Authentication Keeps Replying with false
api
Avatar
Avatar
Avatar
2
jul. 25
4915
API xmlrpc - upload pdf bills to account Solved
api
Avatar
Avatar
Avatar
3
jul. 25
2002
Community
  • Tutorials
  • Dokumentacija
  • Forum
Open Source
  • Prenesi
  • Github
  • Runbot
  • Prevodi
Services
  • Odoo.sh Hosting
  • Podpora
  • Nadgradnja
  • Custom Developments
  • Izobraževanje
  • Find an Accountant
  • Find a Partner
  • Become a Partner
About us
  • Our company
  • Sredstva blagovne znamke
  • Kontakt
  • Zaposlitve
  • Dogodki
  • Podcast
  • Blog
  • Stranke
  • Pravno • Zasebnost
  • Varnost
الْعَرَبيّة Català 简体中文 繁體中文 (台灣) Čeština Dansk Nederlands English Suomi Français Deutsch हिंदी Bahasa Indonesia Italiano 日本語 한국어 (KR) Lietuvių kalba Język polski Português (BR) română русский язык Slovenský jazyk slovenščina Español (América Latina) Español ภาษาไทย Türkçe українська Tiếng Việt

Odoo is a suite of open source business apps that cover all your company needs: CRM, eCommerce, accounting, inventory, point of sale, project management, etc.

Odoo's unique value proposition is to be at the same time very easy to use and fully integrated.

Website made with

Odoo Experience on YouTube

1. Use the live chat to ask your questions.
2. The operator answers within a few minutes.

Live support on Youtube
Watch now