Skip ke Konten
Odoo Menu
  • Login
  • Uji coba gratis
  • Aplikasi
    Keuangan
    • Akuntansi
    • Faktur
    • Pengeluaran
    • Spreadsheet (BI)
    • Dokumen
    • Tanda Tangan
    Sales
    • CRM
    • Sales
    • POS Toko
    • POS Restoran
    • Langganan
    • Rental
    Website
    • Website Builder
    • eCommerce
    • Blog
    • Forum
    • Live Chat
    • eLearning
    Rantai Pasokan
    • Inventaris
    • Manufaktur
    • PLM
    • Purchase
    • Maintenance
    • Kualitas
    Sumber Daya Manusia
    • Karyawan
    • Rekrutmen
    • Cuti
    • Appraisal
    • Referensi
    • Armada
    Marketing
    • Social Marketing
    • Email Marketing
    • SMS Marketing
    • Acara
    • Otomatisasi Marketing
    • Survei
    Layanan
    • Project
    • Timesheet
    • Layanan Lapangan
    • Meja Bantuan
    • Planning
    • Appointment
    Produktivitas
    • Diskusi
    • Approval
    • IoT
    • VoIP
    • Pengetahuan
    • WhatsApp
    Aplikasi pihak ketiga Odoo Studio Platform Odoo Cloud
  • Industri-Industri
    Retail
    • Toko Buku
    • Toko Baju
    • Toko Furnitur
    • Toko Kelontong
    • Toko Hardware
    • Toko Mainan
    Makanan & Hospitality
    • Bar dan Pub
    • Restoran
    • Fast Food
    • Rumah Tamu
    • Distributor Minuman
    • Hotel
    Real Estate
    • Agensi Real Estate
    • Firma Arsitektur
    • Konstruksi
    • Estate Management
    • Perkebunan
    • Asosiasi Pemilik Properti
    Konsultansi
    • Firma Akuntansi
    • Mitra Odoo
    • Agensi Marketing
    • Firma huku
    • Talent Acquisition
    • Audit & Sertifikasi
    Manufaktur
    • Tekstil
    • Logam
    • Perabotan
    • Makanan
    • Brewery
    • Corporate Gift
    Kesehatan & Fitness
    • Sports Club
    • Toko Kacamata
    • Fitness Center
    • Wellness Practitioners
    • Farmasi
    • Salon Rambut
    Perdagangan
    • Handyman
    • IT Hardware & Support
    • Sistem-Sistem Energi Surya
    • Pembuat Sepatu
    • Cleaning Service
    • Layanan HVAC
    Lainnya
    • Organisasi Nirlaba
    • Agen Lingkungan
    • Rental Billboard
    • Fotografi
    • Penyewaan Sepeda
    • Reseller Software
    Browse semua Industri
  • Komunitas
    Belajar
    • Tutorial-tutorial
    • Dokumentasi
    • Sertifikasi
    • Pelatihan
    • Blog
    • Podcast
    Empower Education
    • Program Edukasi
    • Game Bisnis 'Scale Up!'
    • Kunjungi Odoo
    Dapatkan Softwarenya
    • Download
    • Bandingkan Edisi
    • Daftar Rilis
    Kolaborasi
    • Github
    • Forum
    • Acara
    • Terjemahan
    • Menjadi Partner
    • Layanan untuk Partner
    • Daftarkan perusahaan Akuntansi Anda.
    Dapatkan Layanan
    • Temukan Mitra
    • Temukan Akuntan
    • Temui penasihat
    • Layanan Implementasi
    • Referensi Pelanggan
    • Bantuan
    • Upgrades
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Dapatkan demo
  • Harga
  • Bantuan

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

  • CRM
  • e-Commerce
  • Akuntansi
  • Inventaris
  • PoS
  • Project
  • MRP
All apps
Anda harus terdaftar untuk dapat berinteraksi di komunitas.
Semua Post Orang Lencana-Lencana
Label (Lihat semua)
odoo accounting v14 pos v15
Mengenai forum ini
Anda harus terdaftar untuk dapat berinteraksi di komunitas.
Semua Post Orang Lencana-Lencana
Label (Lihat semua)
odoo accounting v14 pos v15
Mengenai forum ini
Help

Why does my XMLRPC path return a 404 error?

Langganan

Dapatkan notifikasi saat terdapat aktivitas pada post ini

Pertanyaan ini telah diberikan tanda
v7xmlrpc
1 Balas
15832 Tampilan
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
Buang
Avatar
Daniel DeLoretta
Penulis Jawaban Terbai

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
Buang
Menikmati diskusi? Jangan hanya membaca, ikuti!

Buat akun sekarang untuk menikmati fitur eksklufi dan agar terlibat dengan komunitas kami!

Daftar
Post Terkait Replies Tampilan Aktivitas
list res.partner with XMLRPC
v7 xmlrpc
Avatar
Avatar
Avatar
2
Mar 15
13797
Is /xmlrpc not included in OpenERP v7 apt repo?
v7 xmlrpc
Avatar
Avatar
1
Mar 15
6146
Via XMLRPC: Can I check if there is an user logged into OpenERP Web Interface at the current web browser?
v7 xmlrpc
Avatar
0
Mar 15
4810
XMLRPC: How to fetch a list of all ids that belongs to a given model?
v7 search xmlrpc
Avatar
Avatar
Avatar
2
Mar 15
18856
How to add a "Delete" button on the popup form? Diselesaikan
v7
Avatar
Avatar
1
Okt 25
5539
Komunitas
  • Tutorial-tutorial
  • Dokumentasi
  • Forum
Open Source
  • Download
  • Github
  • Runbot
  • Terjemahan
Layanan
  • Odoo.sh Hosting
  • Bantuan
  • Peningkatan
  • Custom Development
  • Pendidikan
  • Temukan Akuntan
  • Temukan Mitra
  • Menjadi Partner
Tentang Kami
  • Perusahaan kami
  • Aset Merek
  • Hubungi kami
  • Tugas
  • Acara
  • Podcast
  • Blog
  • Pelanggan
  • Hukum • Privasi
  • Keamanan
الْعَرَبيّة 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 adalah rangkaian aplikasi bisnis open source yang mencakup semua kebutuhan perusahaan Anda: CRM, eCommerce, akuntansi, inventaris, point of sale, manajemen project, dan seterusnya.

Mudah digunakan dan terintegrasi penuh pada saat yang sama adalah value proposition unik Odoo.

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