Hi I have requirement to use perl 5.00503 version which comes along VMware. I need to use XML-RPC for the same version. Any Information on Previous versions of...
Is there any way to use a ServletFilter with XML-RPC? When I a filter that has the following code, the XML-RPC reply happens before the exception. I am using...
I am facing problems in xml rpc calls. ... expat reports error code 70 description: SYSTEM or PUBLIC, the URI is missing line: 1 column: 48 byte index: 50 ...
Hi! Has anyone used the EPI API for XML-RPC made in C ? The one here http://xmlrpc-epi.sourceforge.net/ ? I have the following problem: 1) I am calling a...
I am using xml rpc for database operations. Env: Linux, PHP, xml-rpc, It was working well before I restarted my server. From today it stopped working. I...
Sorry, but to give a meaningful anser, more details are needed: + is the php server acting as xmlrpc server or as xmlrpc client? + are you using the xmlrpc php...
I believe most so-called XML-RPC clients and servers do understand <nil>. But some (e.g. Apache) understand <ex.nil> instead and I presume there are others...
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...