hello troy, This is really good help. I had used the fiddler to view the request and reponse header. I found what is the problem i have. Actually my api...
Hello Dinesh. Your program is giving you this: {events: {evt_change: True}, services: "aw_email"} You want this: {aw_email: {evt_change: True}} So maybe you...
I have an app the runs XML-RPC and it uses the IXR library php file. I have switch from php4 to php5 and seen a huge performance drop and it has become...
After digging up the posts I decided to ask.. According to XML-RPC spec, parameter value of <string> cannot contain < or &. This means, sending XML as a...
... There is no way, to send unescaped xml, sorry. It is not the fault of xmlrpc, it is the fault of the xml spec _ you cannot ever use a "<" char inside a...
... Yes, implementations generally use < and & ... Yes, the text can be enclosed in a CDATA section: <![CDATA[ some text with < and & ]]> I'd be...
... The safest approach is to taken encoded XML and base-64 encode it as a binary payload. This way you don't have to know or are about the encoding of the...
... Actually, CDATA were my next tip. Your post explained to me that XML-RPC uses just the <string>'s node value and not everything below it. In the later...
... I'm not sure I understand what you are saying. Let me try to clarify what the spec says: A <string> can only contain text (in XML terms CDATA). It may not ...
... You might want to look up the relax-ng spec for xmlrpc if you want to add more formalism / automation to the protocol. Unfortunately using xsd to exactly...
Hi All, I want to test my client code to connect to the yahoo server using XML-RPC. Below is my Client code to connect to Flicker service implemented in yahoo...
Hello, I found this very old post http://tech.groups.yahoo.com/group/xml-rpc/message/2306, asking a similar question as I will do in a moment. The only reply...
... One option is to use JABBER-RPC (http://xmpp.org/extensions/xep-0009.html ). this is XML-RPC using XMPP as a transport mechanism rather then HTTP. You run...
Thank you for the reply. One of my requirements is to have at least C (or C++) and java implementations for both server and client side available. Plus the...
... Maybe jsonrpc might be better suited to your needs - it is less hardcoded to http and better suited to bidirectional communications. There are a lot of...
... You could consider having a getNextEvents service available; clients would call it, and get back an array of the most recent events ready for delivery to...
Jay Carlson
nop@...
Jul 16, 2009 11:02 am
6827
... Excellent. It seems that you saved me lots of work. For some reason I had jsonrpc in my mind as some derivative of xmlrpc, using a less structured format...
... This is another option that I was considering. But it needs two connections per client/server pair, doesn't it? If the server is executing (=idling most of...
... I think that once we've decided to use HTTP, we no longer care so much about connections; after all, the concept of a connection is lower in the protocol...
Jay Carlson
nop@...
Jul 16, 2009 3:23 pm
6830
... I don't know, yet. But I think that, depending on the server performance, every server will run into saturation at 10, 100 or 1000 simultaneous...
Hi i have downloaded the DrupalXmlRpc.NET. framwok from sourceforge.net and tried running the same example. i just changed the wensite address to my drupal...
... From: Arne Kalaghan <akalaghan@...> Subject: Re: [xml-rpc] Bidirectional RPC To: xml-rpc@yahoogroups.com Date: Thursday, July 16, 2009, 10:37 AM ...
I went to review the spec (working on a new parser for my Perl implementation) and it looks as though the domain has expired with the provider. However, a ...
Hi, I need to compile the C/C++ code with XML-RPC dll in MinGW environment(Windows). If one can download the pre-built xml-rpc dlls directly, it would be...