Se rendre au contenu
Odoo Menu
  • Se connecter
  • Essai gratuit
  • Applications
    Finance
    • Comptabilité
    • Facturation
    • Notes de frais
    • Feuilles de calcul (BI)
    • Documents
    • Signature
    Ventes
    • CRM
    • Ventes
    • PdV Boutique
    • PdV Restaurant
    • Abonnements
    • Location
    Sites web
    • Site Web
    • eCommerce
    • Blog
    • Forum
    • Live Chat
    • eLearning
    Chaîne d'approvisionnement
    • Inventaire
    • Fabrication
    • PLM
    • Achats
    • Maintenance
    • Qualité
    Ressources Humaines
    • Employés
    • Recrutement
    • Congés
    • Évaluations
    • Recommandations
    • Parc automobile
    Marketing
    • Marketing Social
    • E-mail Marketing
    • SMS Marketing
    • Événements
    • Marketing Automation
    • Sondages
    Services
    • Projet
    • Feuilles de temps
    • Services sur Site
    • Assistance
    • Planification
    • Rendez-vous
    Productivité
    • Discussion
    • Validations
    • Internet des Objets
    • VoIP
    • Connaissances
    • WhatsApp
    Applications tierces Odoo Studio Plateforme Cloud d'Odoo
  • Industries
    Commerce de détail
    • Librairie
    • Magasin de vêtements
    • Magasin de meubles
    • Épicerie
    • Quincaillerie
    • Magasin de jouets
    Food & Hospitality
    • Bar et Pub
    • Restaurant
    • Fast-food
    • Maison d’hôtes
    • Distributeur de boissons
    • Hôtel
    Immobilier
    • Agence immobilière
    • Cabinet d'architecture
    • Construction
    • Gestion immobilière
    • Jardinage
    • Association de copropriétaires
    Consultance
    • Cabinet d'expertise comptable
    • Partenaire Odoo
    • Agence Marketing
    • Cabinet d'avocats
    • Aquisition de talents
    • Audit & Certification
    Fabrication
    • Textile
    • Métal
    • Meubles
    • Alimentation
    • Brewery
    • Cadeaux d'entreprise
    Santé & Fitness
    • Club de sports
    • Opticien
    • Salle de fitness
    • Praticiens bien-être
    • Pharmacie
    • Salon de coiffure
    Trades
    • Bricoleur
    • Matériel informatique et support
    • Systèmes photovoltaïques
    • Cordonnier
    • Services de nettoyage
    • Services CVC
    Autres
    • Organisation à but non lucratif
    • Agence environnementale
    • Location de panneaux d'affichage
    • Photographie
    • Leasing de vélos
    • Revendeur de logiciel
    Browse all Industries
  • Communauté
    Apprenez
    • Tutoriels
    • Documentation
    • Certifications
    • Formation
    • Blog
    • Podcast
    Renforcer l'éducation
    • Programme éducatif
    • Business Game Scale-Up!
    • Rendez-nous visite
    Obtenir le logiciel
    • Téléchargement
    • Comparez les éditions
    • Versions
    Collaborer
    • Github
    • Forum
    • Événements
    • Traductions
    • Devenez partenaire
    • Services for Partners
    • Enregistrer votre cabinet comptable
    Nos Services
    • Trouver un partenaire
    • Trouver un comptable
    • Rencontrer un conseiller
    • Services de mise en œuvre
    • Références clients
    • Assistance
    • Mises à niveau
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Obtenir une démonstration
  • Tarification
  • Aide

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

  • CRM
  • e-Commerce
  • Comptabilité
  • Inventaire
  • PoS
  • Projet
  • MRP
All apps
Vous devez être inscrit pour interagir avec la communauté.
Toutes les publications Personnes Badges
Étiquettes (Voir toutl)
odoo accounting v14 pos v15
À propos de ce forum
Vous devez être inscrit pour interagir avec la communauté.
Toutes les publications Personnes Badges
Étiquettes (Voir toutl)
odoo accounting v14 pos v15
À propos de ce forum
Aide

Why does my XMLRPC path return a 404 error?

S'inscrire

Recevez une notification lorsqu'il y a de l'activité sur ce poste

Cette question a été signalée
v7xmlrpc
1 Répondre
15823 Vues
Avatar
Daniel DeLoretta

I am using OpenERP version 7 (default install) on my own server (CentOS 6) however I cannot connect via XMLRPC.

Please note: I lack sufficient priviliges to post "links" - where you see [http://] you can assume it is http://

wget [http://]my.server:8069/xmlrpc/
root@srv2578a [~]# wget [http ://]my.server:8069/xmlrpc/
--2013-04-24 11:27:49--  [http://]my.server:8069/xmlrpc/
Connecting to my.server:8069... connected.
HTTP request sent, awaiting response... 404 NOT FOUND
2013-04-24 11:27:49 ERROR 404: NOT FOUND.

I have checked in my openerp-server.conf file and the following xmlrpc related items are (in this order):

#i believe the blank interface is listening on all IPs?
xmlrpc_interface =
xmlrpc_port = 8069
xmlrpc = True

I can connect to the website and log in and perform tasks just fine. I wish to automate some things using the XMLRPC feature and PHP.

I am using the following to attempt to connect via XMLRPC (it should return my userid):

<?php

include_once("xmlrpc-2.2.2/lib/xmlrpc.inc"); 
class OpenERPXmlrpc {

    private $user, $password, $database, $services, $client, $res, $msg, $id;

    function __construct($usr, $pass, $db, $server) {

        $this->user = $usr;
        $this->password = $pass;
        $this->database = $db;
        $this->services = $server;

        $this->client = new xmlrpc_client($this->services.'common'); 
        $this->msg = new xmlrpcmsg('login');
        $this->msg->addParam(new xmlrpcval($this->database, "string"));
        $this->msg->addParam(new xmlrpcval($this->user, "string"));
        $this->msg->addParam(new xmlrpcval($this->password, "string"));
        $this->res =  &$this->client->send($this->msg);

        if(!$this->res->faultCode()){
            $this->id = $this->res->value()->scalarval();
        }
        else {
            echo "Unable to login ".$this->res->faultString();
            exit;
        }
    }

    function read($post = null) {

        $this->client = new xmlrpc_client($this->services.'object');
        if(empty($post)) {
            $ids_read = array(new xmlrpcval('1', 'int'), new xmlrpcval('2', 'int'));
            $key = array(new xmlrpcval('id','integer') , new xmlrpcval('name', 'string'));
            $this->msg = new xmlrpcmsg('execute');
            $this->msg->addParam(new xmlrpcval($this->database, "string"));
            $this->msg->addParam(new xmlrpcval(1, "int"));
            $this->msg->addParam(new xmlrpcval($this->password, "string"));
            $this->msg->addParam(new xmlrpcval("res.partner","string"));
            $this->msg->addParam(new xmlrpcval("read", "string"));
            $this->msg->addParam(new xmlrpcval($ids_read, "array"));
            $this->msg->addParam(new xmlrpcval($key, "array"));

            $this->res = &$this->client->send($this->msg);
            if(!$this->res->faultCode()) {
                $read_html = '<table width="20%" border="0" cellpadding="4" cellspacing="4" align="center">
                        <tr>
                           <th>Id</th>
                           <th>Name</th>
                        </tr>
                     ';

                $scalval = $this->res->value()->scalarval();
                foreach ($scalval as $keys => $values) {
                    $value = $values->scalarval();
                    $read_html .= '
                     <tr>
                        <td>'.$value['id']->scalarval().'</td>
                        <td>'.$value['name']->scalarval().'</td>
                     </tr>
                     <tr><td colspan="2"></td></tr>';
                }
                $read_html .= '</table>';
                return $read_html;
            }
            else {
                return "Not read recode from partner table <br />".$this->res->faultString();
            }
        }
    }

}

$cnt = new OpenERPXmlrpc('user.name', 'password', 'DATABASE01', '[http://]my.server:8069/xmlrpc/');

echo $cnt->read();

// outputis this:
// Unable to login Connect error: Connection timed out (110)
?>

Has anyone else encountered this?

Anybody care to share some thoughts on this issue?

0
Avatar
Ignorer
Avatar
Daniel DeLoretta
Auteur Meilleure réponse

Oh! What a simple fix. It would appear you have to open the ports on both the client and the server machines so they can talk.

I simply added port 8069 to the in/out allow chain in iptables.

0
Avatar
Ignorer
Vous appréciez la discussion ? Ne vous contentez pas de lire, rejoignez-nous !

Créez un compte dès aujourd'hui pour profiter de fonctionnalités exclusives et échanger avec notre formidable communauté !

S'inscrire
Publications associées Réponses Vues Activité
list res.partner with XMLRPC
v7 xmlrpc
Avatar
Avatar
Avatar
2
mars 15
13794
Is /xmlrpc not included in OpenERP v7 apt repo?
v7 xmlrpc
Avatar
Avatar
1
mars 15
6135
Via XMLRPC: Can I check if there is an user logged into OpenERP Web Interface at the current web browser?
v7 xmlrpc
Avatar
0
mars 15
4803
XMLRPC: How to fetch a list of all ids that belongs to a given model?
v7 search xmlrpc
Avatar
Avatar
Avatar
2
mars 15
18852
How to add a "Delete" button on the popup form? Résolu
v7
Avatar
Avatar
1
oct. 25
5538
Communauté
  • Tutoriels
  • Documentation
  • Forum
Open Source
  • Téléchargement
  • Github
  • Runbot
  • Traductions
Services
  • Hébergement Odoo.sh
  • Assistance
  • Migration
  • Développements personnalisés
  • Éducation
  • Trouver un comptable
  • Trouver un partenaire
  • Devenez partenaire
À propos
  • Notre société
  • Actifs de la marque
  • Contactez-nous
  • Emplois
  • Événements
  • Podcast
  • Blog
  • Clients
  • Informations légales • Confidentialité
  • Sécurité.
الْعَرَبيّة 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 est une suite d'applications open source couvrant tous les besoins de votre entreprise : CRM, eCommerce, Comptabilité, Inventaire, Point de Vente, Gestion de Projet, etc.

Le positionnement unique d'Odoo est d'être à la fois très facile à utiliser et totalement intégré.

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