Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
1answer
37 views

Communication between Java programs with non-JDK objects

I'm looking for a communication channel between two java programs running on the same machine. I've found a few options (RMI and XML-RCP) but none of the examples that I found show exchange of objects ...
1
vote
2answers
539 views

C# - xml-rpc with a single method and 2 named param

This is a refined and focused question that I asked last week about a project I am working on to use the web service http://www.upcdatabase.com via xml-rpc .net. I am working in c#. The request ...
1
vote
1answer
296 views

How to see traceback on xmlrpc server, not client?

I have simple xmlrpc server code: from SimpleXMLRPCServer import SimpleXMLRPCServer port = 9999 def func(): print 'Hi!' print x # error! print 'Bye!' if __name__ == '__main__': ...
1
vote
1answer
308 views

How do I print XML sended or received in Apache XML-RPC

I'm running a simple client/server XML-RPC app to understand better the Apache XMLRPC library. But I would like to be able to print or debug the XML output that the client sends and the XML received ...
1
vote
3answers
137 views

Ruby Custom Super Initialization

Here is my situation: XMLRPC::Client has a proxy constructor, new3, that takes a hash of options. It takes out the individual values to then delegate the construction to the default initializer, ...
1
vote
1answer
170 views

Custom HTTP headers with XmlRpcClient

I was wondering if anyone knows how to send custom HTTP headers using an XmlRpcClient in Java? I see a custom header can be set using XmlRpcHttpTransport.setRequestHeader() but I don't see a way of ...
1
vote
1answer
86 views

*Client* scalability for large numbers of remote web service calls

I was wondering if you could share best practices and common mistakes when it comes to making large numbers of time-sensitive web service calls. In my case, I have a SOAP and an XML-RPC based web ...
0
votes
0answers
5 views

XMLRPCClient parsing nested array in android

I am beginner android developer.I am using XMLRPC Library Andorid this library works well while server response contains result in a single level array (no Nesting).But when server send us nested ...
0
votes
1answer
15 views

how to write python xml-rpc server-end code

client.py import xmlrpclib proxy = xmlrpclib.Server('http://localhost:9000') print proxy.blogger.getUsersBlogs("23251","xx","xx") server.py (not right) #encoding=utf-8 #!/usr/bin/env python from ...
0
votes
0answers
7 views

Casting error in XML-RPC.NET

I'm using XML-RPC.NET lib and I have this problem I get 2 structures so used at 2 functions (Not in my hands) Structure 1 [StructLayout(LayoutKind.Sequential), XmlRpcMissingMapping(0)] public ...
0
votes
1answer
43 views

Activate wordpress theme remotely for a wordpress blog using ruby xmlrpc/client library

I need to activate theme for wordpress blogs which are present remotely. I thought I will do it with xmlrpc api of worpress http://core.svn.wordpress.org/trunk/wp-includes/class-wp-xmlrpc-server.php, ...
0
votes
1answer
46 views

How to connect a standalone xmlrpc-client to gwt-enhanced xmlrpc-server?

I have a gwt-application and want to connect to it's xmlrpc backend via a standalone xmlrpc-client (written e.g. with Apaches' xmlrpc-library). Assume the project creates a servlet called ...
0
votes
1answer
41 views

How to implement on localhost xml_rpc client in PHP?

Hello i have somme problems to write a simple XML-RPC client in PHP. This is my PHP code: $site_name = "Mikangali"; $site_url = "http://www.mikangali.com"; $site_url = "http://localhost"; ...
0
votes
2answers
96 views

XMLRPC IP.Board could not locate an API module called

I have a case: make work with forum by API fo Forum Engine IP.Board. So i wrote next code: package ru.test; import java.net.MalformedURLException; import java.net.URL; import ...
0
votes
0answers
28 views

Polish characters in xmlrpc_string_new() causing crash

I have problem with XML-RPC for Windows (http://xmlrpc-c.sourceforge.net/). There is a function which creates a string - for example: xmlrpc_value * myStringP; myStringP = ...
0
votes
0answers
252 views

use of org.apache.xmlrpc.client.XmlRpcClient in servlet throws org.apache.xmlrpc.XmlRpcException: Failed to create input stream

My servlet code is as below: public class ViewServiceImpl extends RemoteServiceServlet implements ViewService{ public View getView(String model) { View modelView = new View(); try{ ...
0
votes
1answer
152 views

Using bugzilla webservices in PHP

I want to use the bugzilla webservice APIs in PHP. The issue seems to be the XML-RPC client. I have gone through similar questions, but dont want to install the whole Zend framework only for the ...
0
votes
2answers
108 views

Sending an array in XMLRPC?

I cant figure out whats wrong with this: $message = new xmlrpcmsg('service.RegistrationDetails', array(new xmlrpcval( array('EventId' => new xmlrpxval($EventId, "int"), ...
0
votes
2answers
153 views

Why can't xmlrpc client append item to list accessable via xmlrpc server procedure?

Server code (based on Python library reference): from xmlrpc.server import SimpleXMLRPCServer from xmlrpc.server import SimpleXMLRPCRequestHandler class RequestHandler(SimpleXMLRPCRequestHandler): ...
0
votes
1answer
305 views

XMLRPC.Net how do you pass in an associated array?

I am using the open source library xmlrpc.net and am trying to make a call to a service that has an input parameter that is an associative array. Documentation on call (I am trying to integrate with ...
0
votes
1answer
249 views

400 Bad Request error when using XMLRPC and RoR (3.1, 1.9.2) to post to a wordpress installation

I am attempting to post a blog post to a wordpress blog using XMLRPC. Here is the code I am using: def post(article) my_new_blog_post = { :description => ...
0
votes
3answers
277 views

how can I Pass hashtable like object through xmlrpc-c?

I'm using xmlrpc-c as XMLRPC Client for my C project, my question is how can I pass following parameters to my Remote Procedure Call ? string1, int1, string2, int2, struct (name : age), string3 Here ...
0
votes
2answers
66 views

how can I distribute xmlrpc-c library with my project?

in my C project I've referenced xmlrpc-c library from sourceforge.net in order to use xmlrpc-client. my question is how can I distribute this library so other users don't need to download/install ...
0
votes
4answers
119 views

Is there a way to view the actual XML produced and received by the xmlrpc-c library?

I've got a system where some C++ code (using xmlrpc-c) talks to a Java servlet which uses the Apache XML-RPC library. I've got a problem that would be a whole lot easier to resolve if I could view ...
0
votes
1answer
670 views

Suppressing / controlling logging in org.apache.xmlrpc.XmlRpcClient?

I have inherited some Java code that does some testing of our XMLRPC server. So far so good. Part of that code deals with stopping the server (a few repetitions of "check if server still there and if ...