json-xml-rpc icon indicating copy to clipboard operation
json-xml-rpc copied to clipboard

JSON/XML-RPC Client and Server Implementations

Results 6 json-xml-rpc issues
Sort by recently updated
recently updated
newest added

Server responsed with error (code 1024): Unable to tokenize the JSON input; invalid data. When request to send big image file to server, it fails. Let me guide how to...

Strings were not being XML-encoded - at all. It looks like this was never implemented - the code looked like this: ``` xml.push(value.replace(/[&]/, function(ch){ })); //escape for XML! ``` Maybe...

Traceback (most recent call last): File "rpccall.py", line 15, in print proxy.ourTime(1) File "/usr/lib/python2.7/xmlrpclib.py", line 1224, in **call** return self.__send(self.__name, args) File "/usr/lib/python2.7/xmlrpclib.py", line 1578, in __request verbose=self.__verbose File "/usr/lib/python2.7/xmlrpclib.py",...

Negative real numbers in parameters are rounded. Positive real numbers is ok.

What steps will reproduce the problem? 1. firefox 2. long xmlrpc response in _parseXMLRPC you return only first child value: case 'string': 849 if(!typeEL.firstChild) 850 return ""; 854 return typeEL.firstChild.nodeValue;...