Quick question. http://json-rpc.org/specs.xhtml says that an RPC response should include an Error object, but I can't find a definition for Error objects - are...
... error ... Jan, The java class JSONRPCResult defines errors. I have added two new errors: public final static int CODE_SESSION_EXPIRED = 594 public final...
We have put JSON RPC into production recently and it has been quite successful. However, we are logging an occasional error: java.text.ParseException: A...
Hi Steven, ... You are using JSON-RPC-Java on the server side. You are probably best posting to the json-rpc-java list for issues regarding that specific ...
Guys, I'd like to introduce a new JSON-RPC implementation I recently started. I named it JRP which stands for JSON-RPC Page, and it allows you to create...
I've a quick question about json-rpc over http. I plan to use json-rpc for a project. I plan to use MochiKit as a JS library and wrote a json-rpc request...
... serialized request objects.' How should the Header look? I did make any requirements on the headers. They should contain the content length and a mime...
... Ahh. In that case the HTTPConnectionHandler implementation in jsonrpc (out of pyjsonrpc.zip) is probably faulty. urllib (or urllib2 for that matter) sets...
... jsonrpc (out of > pyjsonrpc.zip) is probably faulty. Probably faulty in other things as well. ;) It was a quick prototype I wrote up without much testing...
Hi, I would like to announce project JayRock, which is a modest implementation of JSON-RPC for Microsoft ASP.NET. JayRock is an open- source project published...
... , ... In my implementation, I originally started with the text/javascript, assuming that JSON being a subset of JavaScript, it would qualify as a complete...
Hi, it seems to me the current spec of JSON-RPC doesn't allow calls from a JavaScript running in a browser without using XmlHTTPRequest. Am I mistaken? It...
... You can run it over any transport according to the spec. Jan-Klaas has an impl that uses sockets. ... Just so it is clear, XMLHttpRequestObject does do...
... I think the spec implies that the content of the POST requests consists of *only* the object in JSON. I don't know if it's possible to achieve that with a...
There is nothing in the JSON-RPC specification that mandates the use of XMLHttpRequest. The specification simply says how the request and response messages...
... I'm not saying that you can access the data before it's done (although theoretically you can by polling responseText). My point is, if you send another...
... If the content type is not application/xml and the content doesn't contain <?xml version="1.0"?> it shouldn't try to parse the data as XML I believe...
... It should be pretty straightforward to say how a JSON-RPC call can be encapsulated within an entity of content-type application/x-www-form- urlencoded. All...
Hi, Over the weekend, I've written a Cherrypy(2.1) filter for json-rpc. (I'll post the code later this week). The json-rpc specs are very silent about the ...
... Yes, although an HTTP server implementation can't really depend on it being set if the implementation wishes to support Opera - so it would then really...
On Monday 26 September 2005 17:14, Michael Clark wrote: [...] ... Too much of my precious life time is already spend on browser inconsistencies. I'll probably...
... It is very easy to make a server impl that supports Opera. I see no reason to exclude it. Be liberal in what you accept, conservative in what you send. ......
... It does not. I know, mostly from (vain) attempts att tricking the Mozilla throbber to do something to show progress the way users expect it to look like...
Just a note about Opera incompatibilities: Opera 8.5 allows setting content-type in XMLHttpRequest. So, sniffing for '{' is not necessary anymore server-side....