Search the web
Sign In
New User? Sign Up
xml-rpc · XML-RPC Discussion
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Hear how Yahoo! Groups has changed the lives of others. Take me there.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 6658 - 6687 of 6839   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
6658
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...
vishnu
ckmvishnu
Offline Send Email
Aug 13, 2007
5:32 pm
6659
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...
bob.jensen
Online Now Send Email
Aug 13, 2007
5:34 pm
6660
... Try include <sys/time.h> in the base.hpp...
rronchiang
Offline Send Email
Aug 13, 2007
5:35 pm
6661
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 ...
Hanumesh
hanumesh_m
Offline Send Email
Aug 13, 2007
5:35 pm
6662
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...
Cimpu Andrei Emanuel
cae_dogg
Offline Send Email
Aug 13, 2007
5:36 pm
6663
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...
Hanumesh
hanumesh_m
Offline Send Email
Aug 13, 2007
5:36 pm
6664
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...
Gaetano Giunta
gaetanogiunt...
Offline Send Email
Aug 15, 2007
8:26 pm
6665
We are trying to determine the best way to work around null values as part of our XML-RPC server. It appears there is an extension detailed here...
csch_nu2001
Offline Send Email
Aug 27, 2007
10:04 pm
6666
If this might be of help, the php-xmlrpc library does support the NIL extension, too...
Gaetano Giunta
gaetanogiunt...
Offline Send Email
Aug 28, 2007
7:23 am
6667
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...
bryanh@...
giraffedata
Offline Send Email
Aug 28, 2007
3:49 pm
6668
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...
luisicozgz
Offline Send Email
Sep 6, 2007
8:39 am
6669
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...
Paul Libbrecht
paul_libbrecht
Offline Send Email
Sep 6, 2007
8:57 am
6670
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...
Gaetano Giunta
gaetanogiunt...
Offline Send Email
Sep 6, 2007
9:01 am
6671
... Looks like you are getting HTML back. You are probably not using the right URL for the request. John Wilson...
John Wilson
tug123uk
Offline Send Email
Sep 6, 2007
9:02 am
6672
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); ...
luisicozgz
Offline Send Email
Sep 6, 2007
1:19 pm
6673
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@...
Send Email
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...
luisicozgz
Offline Send Email
Sep 10, 2007
10:16 am
6675
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...
Paul Libbrecht
paul_libbrecht
Offline Send Email
Sep 10, 2007
11:21 am
6676
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:...
luisicozgz
Offline Send Email
Sep 10, 2007
2:10 pm
6677
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@...
Send Email
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...
John Wilson
tug123uk
Offline Send Email
Sep 10, 2007
6:34 pm
6679
Hello, I have discovered that I have a problem with the accents.I received this response: <methodResponse> <params> <param> <value><array> <data> ...
luisicozgz
Offline Send Email
Sep 13, 2007
2:25 pm
6680
either will work. find out the easiest change to make... ... [Non-text portions of this message have been removed]...
Gaetano Giunta
gaetanogiunt...
Offline Send Email
Sep 13, 2007
2:33 pm
6681
... 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...
John Wilson
tug123uk
Offline Send Email
Sep 13, 2007
3:12 pm
6682
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...
luisicozgz
Offline Send Email
Sep 14, 2007
7:43 am
6683
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@...
Send Email
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...
Gaetano Giunta
gaetanogiunt...
Offline Send Email
Sep 14, 2007
9:47 am
6685
... 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...
John Wilson
tug123uk
Offline Send Email
Sep 14, 2007
11:51 am
6686
... I agree. (the following is from my longish experiments with XML-RPC interoperability several months ago) Due to an "underspecification" in the initial...
Ulrich Schaefer
horribiliscr...
Offline Send Email
Sep 14, 2007
12:37 pm
6687
... I have implemented XML-RPC twice. Both times I did not emit an XML header but used numeric character references (i.e. things like &#x123;) for all code...
John Wilson
tug123uk
Offline Send Email
Sep 14, 2007
12:58 pm
Messages 6658 - 6687 of 6839   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help