Hello, I want to communicate Java and PHP with XML-RPC but I have the next exception: Failed to parse servers response: Expected methodResponse element, got br...
Luis, try to set XmlRpc.setDebug(true) or something such... (maybe new versions have a commons-logging setting, that'd be in the FAQ). You'll see the dump of...
looks like you are not getting back an xml response (since you are geting a BR element, it looks more like html) this usually means either: - you are not...
Hello, I need to send a variable type Date from Java to PHP with XML-RPC.I send the Date on this way: Date a = new Date(2007,9,5); params.addElement(a); ...
On Thu, Sep 06, 2007 at 01:17:04PM -0000, luisicozgz <luisicozgz@...> wrote ... This is a PostgreSQL error (pg_exec is a PostgreSQL call), not a PHP one....
Stephane Bortzmeyer
bortzmeyer@...
Sep 7, 2007 1:18 pm
6674
Hello, I have executed the next line in Java Object[] params = new Object[]{"a","b","c","d"}; params = (Object[])client.execute("function_bb",params); Although...
The message says it all: Failed to parse servers response. Could you activate the debug to see the server-response-document? paul ... [Non-text portions of...
Hello, The console shows the following thing: [Fatal Error] :521:16: Invalid byte 2 of 2-byte UTF-8 sequence. org.apache.xmlrpc.client.XmlRpcClientException:...
On Mon, Sep 10, 2007 at 02:09:38PM -0000, luisicozgz <luisicozgz@...> wrote ... Is it really direccion and not dirección? Because the result you posted...
Stephane Bortzmeyer
bortzmeyer@...
Sep 10, 2007 3:10 pm
6678
... If it is dirección then what's probably happening is that the server is encoding the response in ISO 8859/1 but we can see from the message dump it is not...
... Answered on the Apache list. Basically you have to fix the server to either use UTF-8 or emit a header. You can't fix it at the client end. John Wilson...
Hello, I have in PHP(Server) the next line to create the xml file: <?xml version="1.0" encoding="utf-8"?> Have I with this a valid header or what must I to...
On Fri, Sep 14, 2007 at 07:41:30AM -0000, luisicozgz <luisicozgz@...> wrote ... I do not understand. The XML-RPC server is written in Java or in PHP? ......
Stephane Bortzmeyer
bortzmeyer@...
Sep 14, 2007 9:27 am
6684
if the server is in PHP, AND you are using the standard xmlrpc library (that is, the native xmlrpc extension) to build it (as far as I can tell), you can - use...
... Setting the charset on the HTTP Content-type header violates the XML- RPC spec and, in general, will have no effect on the behaviour of the client. Most...
... I agree. (the following is from my longish experiments with XML-RPC interoperability several months ago) Due to an "underspecification" in the initial...
... I have implemented XML-RPC twice. Both times I did not emit an XML header but used numeric character references (i.e. things like ģ) for all code...
Dear colegues, I would like to install an xml-rpc ping server in order to receive pings from updated blogs. Do you know any open-source solution? Maybe ...
I moderate this group on my own. It takes very little effort. Basically i just get a message whenever a new person joins the group and when they make thier...
Given the very low traffic we have these days, I see no problem in candidating as moderator. Bye Gaetano ... [Non-text portions of this message have been...
Hello, I hope someone can help me with this problem. I have setup a simple script with xml-rpc to get xml back from a server. Works OK but the xml that is...
hard to tell, if you do nor specify your language of choice, toolkit/library/server environment... ... [Non-text portions of this message have been removed]...
I'm trying to use: RPC::XML Version 0.58 ... "keY" to pass to the calls. Does the module support that? it said to install SSLeay which we did but then we get...
i had a couple of doubts regarding xmlrpclib How can i get all the posts in the blog?? and for this "metaWeblog.getPost (postid, username, password)" how do i...
On Fri, Oct 12, 2007 at 08:05:09AM -0000, ashok.raavi <ashok.raavi@...> wrote ... There is no standard way. With Metaweblog, you call ...
Stephane Bortzmeyer
bortzmeyer@...
Oct 15, 2007 7:21 am
6697
Hi I'm new to xmlrpc. Trying to connect to a wiki site using this API, and it looks like the only xmlrpc implementation currently supporting digest ...