Questions tagged [xml-rpc]

XML-RPC is a remote procedure call (RPC) protocol which uses XML to encode its calls and HTTP as a transport mechanism.

XML-RPC is a means of encoding RPC requests in XML and sending them over HTTP. The use of XML as the intermediate language allows nesting of parameters into maps and lists, thus larger structures can be transported. Therefore XML-RPC can be used to transport objects or structures both as input and as output parameters.

In comparison to REST, where resource representations (documents) are transferred, XML-RPC is designed to call methods. You can find the homepage here.

1709 questions
0
votes
0 answers

php updating serialized fields in wordpress with xml-rpc

I'm trying to create/update wordpress custom posts using xml-rpc. The post includes some serialized fields such as location data: a:2:{s:3:"lat";s:2:"51";s:3:"lng";s:3:"-3.2";} I'm using php xmlrpc_encode_request which is "experimental". If I send…
0
votes
0 answers

openerp and php xmlrpc is not working on shared hosting but working on localhost

I have ipage host server when i tried to upload my php code on my server, it is not establishing connection with openerp but when i tried it on localhost it is working fine and generating lead. I want it working on my website on live shared server…
Atul Jain
  • 1,053
  • 11
  • 36
0
votes
2 answers

Stub XMLRPC::Client call in rails test with rspec

I'm trying to stub XMLRPC::Client.call in my rspec tests in rails. Here is my method: def xmlrpc_call(location, repeat, func, *args) Rails.logger.debug("XML_RPC: calling #{func}(#{args.inspect})") timeout = XMLRPC_TIMEOUT ?…
retgoat
  • 2,414
  • 1
  • 16
  • 21
0
votes
1 answer

OpenERP DB Connectivity with Django

Is it possible to have direct connectivity of OpenERP DB with Django ? I am able to connect openerp with xmlrpc, but there few custom module tables which I want to modified directly. I am not sure what is right and correct way to direct sql statment…
0
votes
1 answer

How can I do logout to OpenERP server using XML-RPC protocol in Java?

I am working in an Android app with Eclipse which connects with an OpenERP server using XML-RPC protocol. My question is how to do a logout to the server or if it is not necessary. I have tried to do it in the same way as the "login" method but it…
jelogar
  • 25
  • 5
0
votes
1 answer

CodeIgniter XML-RPC request formatting

I'm trying create XML request to remote server with CodeIgniter. I need create formatted call like this: My…
Jiří Valoušek
  • 611
  • 1
  • 7
  • 19
0
votes
2 answers

How to create / update test records on OpenERP 7, using JMeter?

I'm trying to test the load response of an OpenERP module that I've been developing. I've managed to authenticate and read from my model(s) thanks to this tutorial. I'd like now test the creation and update of existing records, but I can't find…
0
votes
0 answers

Error while handling payments through Magento API with Authorize.net

I am using the Magento APIs to build a custom store. I am able to create a shopping cart and add a product to the cart and set shipping and billing addresses. I have configured Authorize.net as the payment method in the Magento Admin backend. I am…
detj
  • 5,299
  • 6
  • 30
  • 32
0
votes
1 answer

XML-RPC giving error while extracting ticket info from Trac

I am using XML-RPC plugin in Java to extract ticket information from Trac. So far I am successful with the following code config.setBasicUserName ("username"); config.setBasicPassword ("password"); config.setServerURL (new URL…
Harry
  • 1,572
  • 2
  • 17
  • 31
0
votes
1 answer

OpenERP XML-RPC PHP insert into re.users with company_id

I'm trying to insert in res.users with this code: $values= array( "name"=>new xmlrpcval($name,"string"), "login"=>new xmlrpcval($login,"string"), "password"=>new xmlrpcval($psw,"string"), "lang"=>new…
Vanojx1
  • 5,574
  • 2
  • 23
  • 37
0
votes
0 answers

XML RPC non-object on scalarval

I have the following script to login to openERP:
armandomaria
  • 99
  • 1
  • 2
  • 13
0
votes
1 answer

How to set UTF-8 encoding with XMLRPC client library

I'm using XMLRPC client to call Adestra API services. Currently I'm having problems inserting Bosnian letters č, ć, ž, đ, š. I configured my XMLRPC client to work with UTF-8, but still having problems. Here my code sample: //******* LOGIN…
MrD
  • 2,423
  • 3
  • 33
  • 57
0
votes
2 answers

Mock a server using Mockito

I am trying to test if the server will return the string. However, I want to test it without actually connecting to the server. I am trying to get rid of the java.net.SocketException by mocking the server. What approach should I do? The code below…
user3720852
  • 13
  • 1
  • 5
0
votes
1 answer

How to find out if an XML-RPC server is working?

I have a huge Ping list and want to clean it. Using PHP I have already removed duplicated, checked for 404s, redirects etc. I was wondering what I could send to the URLs to see if they are actually functioning and open for submissions?
user137621
0
votes
2 answers

Three20 iPhone - Sending XML-RPC Request instead of HTTP?

I am new to Three20 and have been trying to develop an iPhone app with Three20 for the past week. This app has to access to a xmlrpc server. I know it is possible to receive responses in other formats like JSON. But for requests, instead of the…
0pcl
  • 1,154
  • 4
  • 17
  • 22
1 2 3
99
100