Skip to main content
1 vote
1 answer
74 views

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?
Memnarch1113's user avatar
0 votes
1 answer
95 views

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: ...
Memnarch1113's user avatar
2 votes
0 answers
47 views

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&...
Abdu Kikhia's user avatar
0 votes
1 answer
97 views

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....
Marco Di Gennaro's user avatar
0 votes
0 answers
22 views

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 - ...
Cypert's user avatar
  • 159
0 votes
0 answers
100 views

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) { ...
Baha HajAhmad's user avatar
1 vote
1 answer
47 views

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 ...
Scott Nicklous's user avatar
0 votes
1 answer
135 views

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\...
Osama Ahmed Momin's user avatar
0 votes
0 answers
49 views

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 ...
Shane Beacham's user avatar
0 votes
1 answer
296 views

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 ...
Aditya Irri's user avatar
0 votes
1 answer
138 views

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', '...
Giulio's user avatar
  • 1
0 votes
0 answers
100 views

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', ...
Giulio's user avatar
  • 1
1 vote
0 answers
2k views

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 ...
Hughesey's user avatar
  • 457
0 votes
0 answers
110 views

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 ...
Aditya Irri's user avatar
0 votes
2 answers
132 views

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 ...
Olumide's user avatar
  • 5,915

15 30 50 per page
1
2 3 4 5
114