Hi all, I need to implement some of my function calls in rpc (I hope I stated that correctly). I have found an example for implementing and compiling the h ...
39
LUCIO PICOLLI
lucio.piccoli@...
Mar 19, 1999 8:49 am
Hi all, I am new to xml-rpc. I have read the xml-rpc spec at userland.com and have a few questions. Before i ask a really dumb question i would like to read as...
40
Skip Montanaro
skip@...
Aug 23, 1999 8:00 pm
Yo, out there, XML-RPC users... This mailing list - xml-rpc@egroups.com - is pretty much dead, but I don't think it's for lack of useful subject matter. Ken...
41
Skip Montanaro
skip@...
Sep 1, 1999 9:57 pm
I'm using XML-RPC between a server written in Python and clients written in Python, Perl and Java. I've been struggling to get them to all agree on encodings...
42
Ken MacLeod
ken@...
Sep 2, 1999 12:14 am
... I tried running the above query from Perl and got a server error: bash> perl -I../lib rpc-client.pl http://dolphin.mojam.com:5007/RPC2 query \ ... Fault...
43
skip@...
Sep 2, 1999 12:20 am
I wrote a snippet of Python code: x = dolphin.query(('MusicEntry', {'performers': ['Chucho Vald\351s']})) and Ken responded: I tried running the above query...
44
Ken MacLeod
ken@...
Sep 2, 1999 12:09 am
... This is a known problem in XML::Parser. The error appears to only happen with Perl 5.004, not Perl 5.005. The easiest solution would be to upgrade to...
45
Ken MacLeod
ken@...
Sep 2, 1999 12:09 am
... That's my understanding as well. ... (XML::Parser is 2.23/2.26, Frontier-RPC is 0.05.) ... Yes, you can set the XML encoding and a conformant XML parser ...
46
Ken MacLeod
ken@...
Sep 2, 1999 12:09 am
... Do you mean that XmlRpc.java generates ISO-8859-1 encoded XML without an encoding declaration _because_ Frontier doesn't? Or that Frontier, as a side...
47
Hannes Wallnoefer
hannes@...
Sep 2, 1999 12:10 am
... No, XmlRpc.java generates ISO-8859-1 but with the proper encoding declaration. It previously used UTF-8, and that caused problems with Frontier on Windows....
48
Ken MacLeod
ken@...
Sep 2, 1999 12:10 am
... I have more information and a patch. This error will be fixed in XML::Parser 2.27 which has other changes pending as well. The error is in XML::Parser...
49
Skip Montanaro
skip@...
Sep 2, 1999 12:27 am
Ken, I used the egroups.com web site to reply to your note. Let me know if it comes through okay. The argument to the query method should be a two-element...
50
Skip Montanaro
skip@...
Sep 2, 1999 12:30 am
I'm still figuring this egroups stuff out. I'm used to mailing lists that don't set Reply-To fields to the entire group. If this odd behavior is annoying to...
56
Fredrik Lundh
fredrik@...
Sep 2, 1999 2:28 pm
... 1. I assume you've modified xmlrpclib to include an encoding attribute? otherwise, the server should choke on that string, since "Chucho Vald\351s" is an...
57
Hannes Wallnöfer
hannes@...
Sep 2, 1999 2:28 pm
Let's see: you're sending a request to the server and it arrives there and is parsed properly, right? The error happens when the Java client reads the result....
58
Ken MacLeod
ken@...
Sep 2, 1999 2:28 pm
... You're right, I missed the extra parens. Making the arguments a single list worked. What you probably already knew: Perl returns the \351 as a two-byte ...
59
Skip Montanaro
skip@...
Sep 2, 1999 2:47 pm
Well, I'm not sure just what the problem was, but it began working last night. I suspect that the server was probably picking up an old version of the...
60
eric@...
Sep 2, 1999 6:08 pm
Hello! Since Andre's away, Dave's asked me to represent UserLand on this mailing list. I've been getting hosed by XML-RPC encodings, too. Here's what I've...
61
eric@...
Sep 2, 1999 6:39 pm
... use ... attribute ... I just proposed this fix to the UserLand development team. I'll keep everyone informed. Cheers, Eric...
62
Skip Montanaro
skip@...
Sep 2, 1999 6:40 pm
Eric> Hello! Since Andre's away, Dave's asked me to represent UserLand Eric> on this mailing list. I've been getting hosed by XML-RPC Eric> encodings, too. ...
63
Ken MacLeod
ken@...
Sep 2, 1999 6:43 pm
... I think it's a two part answer, and should be relatively easy to implement. The first part is that the user should be able to state what encoding their...
64
Eric Kidd
eric@...
Sep 2, 1999 7:17 pm
... Well, I'm glad that people care enough about XML-RPC to find the problems and complain. :-) ... Good idea. We use Fredrik's XML-RPC implementation...
65
Skip Montanaro
skip@...
Sep 2, 1999 7:23 pm
Since we seem to have some crosstalk between list members and XML-RPC people who aren't on the list, and so far there seem to be no problem posts (spam-type...
66
Ken MacLeod
ken@...
Sep 2, 1999 8:22 pm
... Try out Frontier-RPC-0.06b1 at <http://bitsko.slc.ut.us/~ken/xml-rpc>. This version includes the `proxy' option and a `debug' option in Frontier::Client,...
67
Ken MacLeod
ken@...
Sep 2, 1999 8:33 pm
... Should that say should send 'encoding="ISO-8859-1"' *if the data is in ISO-8859-1* ?? I.e. I don't see any reason for the spec to explicitly state that ...
68
Skip Montanaro
skip@...
Sep 2, 1999 8:41 pm
... Ken> Should that say Ken> should send 'encoding="ISO-8859-1"' *if the data is in ISO-8859-1* Ken> ?? Ken> I.e. I don't see any reason for the spec to...
69
Eric Kidd
eric@...
Sep 2, 1999 9:07 pm
... Please forgive me for any confusion--I wasn't thinking about the standard. Instead, I was trying to address interoperability issues. Some of the existing...
70
Eric Kidd
eric@...
Sep 2, 1999 9:14 pm
... This makes sense. ... Again, good idea. ... Would anybody like to maintain this table? I don't have time to check out each of the implementations myself. ...
71
Skip Montanaro
skip@...
Sep 2, 1999 9:20 pm
Me> Which reminds me of another column for that table I suggested in an Me> earlier post... It should definitely have a "supported encodings" Me> column. Eric>...
72
rneal@...
Sep 13, 1999 5:03 pm
1. Has a decision been made to NOT allow the use of entity attributes (example: <param number="first">)? I'd like to know whether I need to plan on...