1,701 questions
1 vote
1 answer
74 views
How do you add the ability to send custom objects over python xmlrpc in python 3.x?
A follow up from this question, how do you set up xmlrpc for python in the newer 3.x python versions where xmlrpclib is no longer used?
0 votes
1 answer
95 views
Is there a good way to differentiate local and remote paths with python pathlib?
I have an app that connects to a remote computer via an RPC server. The client code (on my computer) sometimes sends commands to the RPC server that include arguments for a file path, something like: ...
2 votes
0 answers
47 views
Adding nested lists using xmlrpc2 package
I'm trying to integrate R with Odoo using the XML-RPC API and the xmlrpc2 package in R. When trying to get the result from the response using result <- from_xmlrpc(content(response, as = "text&...
0 votes
1 answer
97 views
How to use a xmlrpc.client.ServerProxy object in package function?
I am working with the Odoo XML-RPC API and I want to reuse a connection (ServerProxy object) across multiple functions in my package. Current Setup I establish the connection like this: import xmlrpc....
0 votes
0 answers
22 views
Disable xmlrpc-c POST message
I'm using xmlrpc-c++ library to implement a client in my C++ code. I've gotten it working, however, whenever I do a call() that returns a value a POST message is printed into the terminal: 127.0.0.1 - ...
0 votes
0 answers
100 views
How to create XML RPC request using .NET Core 8
This request created using .NET Framework but it did not work in .NET Core because it's not supported public XmlRpcStruct GetOffers(string msisdn, string userName, string password) { ...
1 vote
1 answer
47 views
How to use Odoo REST Services with JAX-RS?
I am trying to write a Java web application that runs on A Tomee application server. The application uses a number of Jakarta EE technologies such as JAX-RS, Jakarta Faces, and CDI. The basic ...
0 votes
1 answer
135 views
Trying to get data from Odoo using PHP/Laravel-9 using XMLRPC
I am able to authenticate but when trying to get data it's giving me an error This is the error I am getting. I am using Laravel version 9.46, check using via php artisan -v <?php namespace App\...
0 votes
0 answers
49 views
Distributed Computing with XML-RPC in Python
I need to create two Python programs, Server.py and Client.py. Server.py should register x procedures that the client will be able to call. It will then bind to the address "localhost" and ...
0 votes
1 answer
296 views
How to Download Sales Order Invoice from Odoo 15 Using XML-RPC or JSON-RPC in Python Flask Without SSH Access?
I'm working on a Python Flask application where I need to download sales order invoices from Odoo 15 using either XML-RPC or JSON-RPC. However, due to security constraints, I cannot access the Odoo ...
0 votes
1 answer
138 views
Stop following the partner in Odoo 17 at creation time
Tips on how to stop following a partner when it is created using php and ripcord? I tried this: $models = ripcord::client($url.'/xmlrpc/2/object'); $vals = array( 'name' => 'Test', '...
0 votes
0 answers
100 views
Order from draft to confirmed by xmlrpc (Odoo 16)
Tips for confirming an order via php xmlrpc? (draft to sale) I use ripcord as library for xmlrpc and try: $r = $models->execute_kw( $db, $useruid, $password, 'sale.order', 'action_confirm', ...
1 vote
0 answers
2k views
PHP 8.2 xmlrpc unable to initialize module
I'm currently upgrading my PHP version from 8.0 to 8.2.13. The website is up and running but I keep getting the PHP warning of Warning: PHP Startup: xmlrpc: Unable to initialize module. I've checked ...
0 votes
0 answers
110 views
How to Create an Invoice for Rental Order in Odoo 15.2 Using XML-RPC?
I have a rental object in Odoo 15.2, and I'm trying to create an invoice for a rental order programmatically using XML-RPC. I can see a "Create Invoice" button at the top, and when I hover ...
0 votes
2 answers
132 views
SimpleXMLRPCServer.shutdown() failure post request
I recently added a RPC backend to an existing single-threaded application as shown below lock = Lock() def update_state(address, value): with lock: state[address] = value class ...