Hi, I am currently testing my application on windows with xmlrpc 01.16.00. I am getting utf related problems. This occurs when i try to to call function...
Greetings Jay. It seems by your log that you are passing invalid data to your method. UTF-8 can only represent values 0x00-0x7f in single-byte format. When...
Hi Troy, The same piece of code is working fine in linux. In windows its giving this particular problem. Also if two-byte representation is needed, do i need...
Hi, It seems va_listx operation is not working properly on windows. The arguments are populated with the string "callback_method" in xmlrpc_build.c. ...
Hello, thank you for the great lib ... but i wonder if there is an "running" example for a real vb.net xmlrpc-net SERVER. I dont like to have an IIS or...
I'd say the best choices are: - the php xmlrpc extension (www.php.net/xmlrpc). Fastest of them all, since it is written in C and not in PHP, and comes as...
Hello everyone, Iam using the xmlrpc with the c#.net. My server function looks like this below. API = (('object_id', 'ASCII string', 1), ('services', 'struct',...
Hello Dineshp. You can nest XmlRpcStructs just like you would nest .net Hashtables: XmlRpcStruct t = new XmlRpcStruct(); XmlRpcStruct u = new XmlRpcStruct(); ...
Hello troy, Thank you very much for your answer. I have implemented the interface and structure as below [XmlRpcUrl("http://www.myurl.com")] public interface...
Dinesh, If your client is not receiveing a response, your client is probably not transmitting a request. Try using Wireshark http://www.wireshark.org/ to ...
hello troy, Thank you once again for your reply. Actually is it possible to view the request in from the c#.Net itself so that i can verify with the server api...
Hello troy, This was really good help. I had used Fiddler to view the request header. Actually i have a send a request to the server api function like this ...
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...