Skip to Content
Odoo Meniu
  • Autentificare
  • Try it free
  • Aplicații
    Finanțe
    • Contabilitate
    • Facturare
    • Cheltuieli
    • Spreadsheet (BI)
    • Documente
    • Semn
    Vânzări
    • CRM
    • Vânzări
    • POS Shop
    • POS Restaurant
    • Abonamente
    • Închiriere
    Site-uri web
    • Constructor de site-uri
    • eCommerce
    • Blog
    • Forum
    • Live Chat
    • eLearning
    Lanț Aprovizionare
    • Inventar
    • Producție
    • PLM
    • Achiziție
    • Maintenance
    • Calitate
    Resurse Umane
    • Angajați
    • Recrutare
    • Time Off
    • Evaluări
    • Referințe
    • Flotă
    Marketing
    • Social Marketing
    • Marketing prin email
    • SMS Marketing
    • Evenimente
    • Automatizare marketing
    • Sondaje
    Servicii
    • Proiect
    • Foi de pontaj
    • Servicii de teren
    • Centru de asistență
    • Planificare
    • Programări
    Productivitate
    • Discuss
    • Aprobări
    • IoT
    • VoIP
    • Knowledge
    • WhatsApp
    Aplicații Terțe Odoo Studio Platforma Odoo Cloud
  • Industrii
    Retail
    • Book Store
    • Clothing Store
    • Furniture Store
    • Grocery Store
    • Hardware Store
    • Toy Store
    Food & Hospitality
    • Bar and Pub
    • Restaurant
    • Fast Food
    • Guest House
    • Beverage distributor
    • Hotel
    Real Estate
    • Real Estate Agency
    • Architecture Firm
    • Construction
    • Estate Managament
    • Gardening
    • Property Owner Association
    Consulting
    • Accounting Firm
    • Odoo Partner
    • Marketing Agency
    • Law firm
    • Talent Acquisition
    • Audit & Certification
    Producție
    • Textile
    • Metal
    • Furnitures
    • Food
    • Brewery
    • Corporate Gifts
    Health & Fitness
    • Sports Club
    • Eyewear Store
    • Fitness Center
    • Wellness Practitioners
    • Pharmacy
    • Hair Salon
    Trades
    • Handyman
    • IT Hardware and Support
    • Solar Energy Systems
    • Shoe Maker
    • Cleaning Services
    • HVAC Services
    Others
    • Nonprofit Organization
    • Environmental Agency
    • Billboard Rental
    • Photography
    • Bike Leasing
    • Software Reseller
    Browse all Industries
  • Comunitate
    Învăță
    • Tutorials
    • Documentație
    • Certificări
    • Instruire
    • Blog
    • Podcast
    Empower Education
    • Program Educațional
    • Scale Up! Business Game
    • Visit Odoo
    Obține Software-ul
    • Descărcare
    • Compară Edițiile
    • Lansări
    Colaborați
    • Github
    • Forum
    • Evenimente
    • Translations
    • Devino Partener
    • Services for Partners
    • Înregistrează-ți Firma de Contabilitate
    Obține Servicii
    • Găsește un Partener
    • Găsiți un contabil
    • Meet an advisor
    • Servicii de Implementare
    • Referințe ale clienților
    • Suport
    • Actualizări
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Obține un demo
  • Prețuri
  • Ajutor

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

  • CRM
  • e-Commerce
  • Contabilitate
  • Inventar
  • PoS
  • Proiect
  • MRP
All apps
Trebuie să fiți înregistrat pentru a interacționa cu comunitatea.
All Posts Oameni Insigne
Etichete (View all)
odoo accounting v14 pos v15
Despre acest forum
Trebuie să fiți înregistrat pentru a interacționa cu comunitatea.
All Posts Oameni Insigne
Etichete (View all)
odoo accounting v14 pos v15
Despre acest forum
Suport

Is the Xml-RPC API available on OpenERP Online?

Abonare

Primiți o notificare când există activitate la acestă postare

Această întrebare a fost marcată
saas
2 Răspunsuri
22505 Vizualizări
Imagine profil
thenon

Hi, regarding the API:

a) Is it definitely the case that in "OpenERP online" SAAS there is no Xml-rpc?

b) Is there anything I need to do to enable it in v7? My sample code is failing to connect, wondering if there is a toggle somewhere...

Thanks.

9
Imagine profil
Abandonează
Imagine profil
Fabien Pinckaers (fp)
Cel mai bun răspuns

You can use the XML-RPC API in OpenERP Online by setting manually a password on your user (i.e. an API password) , using the menu top "More..." and the option "Change Password". This allows the selected user to connect with the 'traditional' OpenERP web-service and skip the OAuth authentication mechanism. See also this question for more details.

The parameters to use are then:

  • Login: any user login on which you assigned a manual password
  • Password: the password you manually set (can be different from the password on OpenERP.com)
  • URL: https://yourcompany.my.openerp.com (watch out, this must be HTTPS)
  • Database: same as the name of your instance, e.g. yourcompany
  • Port: 443 (normally implicit with the HTTPS URL)

See also:

  • Some examples for using the XML-RPC API (this is for v6.1 but valid for 7.0 and OpenERP online too)
  • There are many open source libraries that simplify the use of the XML-RPC API, most of them written in Python, such as the openerp-client-lib, ERPpeek, OERPLib, etc.
  • As of OpenERP 6.1 an alternative JSON-RPC API is available. The openerp-client-lib can use it, and php-oe-json is an experimental PHP library that can do it too.
5
Imagine profil
Abandonează
National Health Distribution Inc.

This is all well and good, but what database are you supposed to specify for the Online version? Is there any restriction when the account is in trial?

Ray Carnes

"Database: same as the name of your instance, e.g. yourcompany" - a trial is 100% identical to a subscription, but without the services (additional users, support, apps store, bug fixing, migration, etc).

Fausto R.

I am trying as explained with xml-rpc, openerplib, and oerplib libraries. All of them produce errno -2 (Name or service not known), and the last call said (.../socket.py, line 553, in create_connection). Any suggestions around url:port or elsewhere?

Imagine profil
Sebastien Alix
Cel mai bun răspuns

Hi,

There is an example in the FAQ of OERPLib. A complete example:

>>> import oerplib
>>> oerp = oerplib.OERP('yourcompany.my.openerp.com', protocol='xmlrpc+ssl', port=443)
>>> oerp.login('user', 'password', 'yourcompany')

Regards,

2
Imagine profil
Abandonează
Enjoying the discussion? Don't just read, join in!

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

Înscrie-te
Related Posts Răspunsuri Vizualizări Activitate
Can we run Odoo open source as a SaaS commercially with new Front-End design and change odoo brand with our brand?
saas
Imagine profil
0
iul. 20
3497
Licensing Questions
saas
Imagine profil
Imagine profil
2
mar. 19
8222
Odoo saas setup issue
saas
Imagine profil
0
ian. 18
4695
Odoo As A SaaS Rezolvat
saas
Imagine profil
Imagine profil
Imagine profil
5
iul. 17
19417
Where is odoo SAAS most stable repositories ?
saas
Imagine profil
Imagine profil
2
sept. 16
6425
Comunitate
  • Tutorials
  • Documentație
  • Forum
Open Source
  • Descărcare
  • Github
  • Runbot
  • Translations
Servicii
  • Hosting Odoo.sh
  • Suport
  • Actualizare
  • Custom Developments
  • Educație
  • Găsiți un contabil
  • Găsește un Partener
  • Devino Partener
Despre Noi
  • Compania noastră
  • Active de marcă
  • Contactați-ne
  • Locuri de muncă
  • Evenimente
  • Podcast
  • Blog
  • Clienți
  • Aspecte juridice • Confidențialitate
  • Securitate
الْعَرَبيّة 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 este o suită de aplicații de afaceri open source care acoperă toate nevoile companiei dvs.: CRM, comerț electronic, contabilitate, inventar, punct de vânzare, management de proiect etc.

Propunerea de valoare unică a Odoo este să fie în același timp foarte ușor de utilizat și complet integrat.

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