Hey there, I use XML-RPC to query a library placed on Zope server , for an application named GNOWSYS. well, the call made is as shown : import xmlrpclib ...
... Hash: SHA1 HI guys, I'm developing a XML-RPC service which I mean to use from Applescript (as well as other languages, of course.) Now, Applescript's...
There are many ways to make use of it. They are listed in the order of their simplicity. (simplest first) Asume u use j2sdk1.4.2 and Windows XP Method 1. Add...
Check whether both the port numbers given at the server and the client are same. Have u started the server first and then the client. Check whether the...
Dear friend, What do you expect more in a JavaScript implementation? If u suggest some ideas or features to be included, many guys in our group will try to...
... This is the way i used in my XML-RPC implementaion. There is no nested tag for <value> Eg: <?xml version="1.0"?> <methodResponse> <params> <param> <value/>...
... Actually, this is a valid XML-RPC result. You are returning a zero length String (as the spec allows <string></string> to be omitted). John Wilson The...
I'd like to use the RPC on my linux platform. But I don't know how I can use that application. So I checked and just figured out one method using 'rpcgen'. ...
There is some guy that proposed an extension to add the <nil/> value to xmlrpc: see http://ontosys.com/xml-rpc/extensions.php Of course it did not make it into...
Turns out JS-o-lait finally satisfied our requirements... After some tweaking (among others, get rid of the PHP connections and such, and make things...
... I don't think extensions of XML-RPC are reasonable to expect... It's been unchanging since ages and this is its strength! If you want extensibility... try...
rpcgen is a related to remote-procedure-calls, as done in the old unix-world (e.g., the base of NFS)... I don't think it has anything to do with XML-RPC except...
True! I agree with Jai, I am at present using some ready made JavaScript code for my web clients, is any feature is required that is not available I will ...
Hi guys, When i was testing my XML-RPC application for performance, the performance showed very poor results. Although there are many reasons for this like...
... If your server supports HTTP keep-alive then the performance of multiple calls will improve a great deal. Eric Kidd proposed an extension to the protocol...
... Expanding on that: The RPC that involves 'rpcgen' is often called "Sun RPC," as Sun invented it. It was as far as I know the first well known remote...
... When using Apache XML-RPC, the performances gen multiplied by at least 10 if you use XmlRpcClientLite instead of XmlRpcClient, the difference being,...
I'd rather say the first well-known was the Apollo RPC that later became NCS RPC, then DCE RPC, then MS RPC. YMMV, of course. But as you say the performance...
I think it's one of those "it's easy when you know how" things, which kind of glosses over that learning how is what difficulty is all about. It's also one of...
As John pointed out, there have been suggestions, but nothing has ever been folded into the specification itself. Moving to HTTP/1.1 and taking advantage of...
What John said. Most languages implement struct in the closest native data structure (associative arrays in Perl, Hash interfaced collections in Java, etc.),...
... I don't see that. In fact, I see an example in the spec that uses HTTP 1.1. ... I don't see that either. It does mention that an earlier edition said ...
... The spec says "The Content-Type is text/xml" this means that from an HTTP perspective the encoding is USASCII. Some implementations do use the XML...
... I think one would commonly interpret that as to mean any sub-type of text/xml. I.e. the media-type (which is what goes in a Content-Type HTTP header)...
... I think the XML or http spec says well: if there's a header that says encoding, one needs to follow it. Otherwise... use whatever you want to find it......
... It's talking about content encoding, right? We're talking about two different things here -- content encoding and character set. "USASCII" is a character...
... USASCII is both a character encoding and a character set, UTF-8 is a character encoding but not a character set, Unicode is a character set but not a...
Hi guys, I have made a very simple implementaion of the XML-RPC Specification for Java. I would request you guys to try my implementation and suggest me some...