Hi Folks, There is a new version of my Java bindings for JSON-RPC http://oss.metaparadigm.com/jsonrpc/ I probably need to sync up changes with Jan-Klaas'...
Hi Folks, I've just rolled a 0.6 release of my Java implementation of JSON-RPC. http://oss.metaparadigm.com/jsonrpc/ Main news here is we now have an...
Hi Michael, ... Nice to see that. Did you impl. the class hinting as suggested by the most recent specs? I'd be interested in hearing about that. I must admit...
So, someone put JSON-RPC on slashdot.org http://developers.slashdot.org/developers/05/01/24/125236.shtml?tid=108&tid=156&tid=95&tid=8 Nice ! :) Was that you,...
... I've had a think about it but haven't implemented anything yet. The problem I see is you can no longer just use an assignment to unmarshall (or I guess you...
... Actually an embarrasing bug which stopped my JavaScript client working in Internet Explorer slipped through my QA for 0.6 (with all that testing of Konq,...
Hi, I just learned about json from the slashdot posting today. I'm trying to make it work with the Python Json-rpc service. I do most of my stuff with Java...
It runs as a CGI, no need for mod_python really. Just place the json.py, jsonrpc.py, and your service file(or the test.py from the download) into a directory,...
That was easy! Works well. Thank you. ... __________________________________________________ Do You Yahoo!? Tired of spam? Yahoo! Mail has the best spam...
Hi read the Slashdot and Server-Side articles on JSON and think it is a fantastic system for thin clients. You'll have to excuse me if this is a stupid...
... If you have sockets like in the upcoming SVG1.2 specs then server-push is not a problem. The json-rpc impl. from http://jsolait.net/ should work with...
Dear all, I just came across JSON and JSON-RPC last week: I like the idea a lot, especially given the ease of implementation. So I downloaded the python...
Hi, thanks for the patch I should have mentioned on my page that I wrote the python impl. to test the protocoll and have not really worked on it much further ...
[Jan-Klaas Kollhof] ... [Alan Kennedy] ... [Jan-Klaas Kollhof] ... Point taken: you're right: the tokenizer will not permit such DOS attacks through, and eval...
Sorry, the whitespace in that code snippet got mangled by YahooGroups. Here it is again, with '.'s instead of spaces, so you'll have to replace '.'s with...
... I am convinced ! ... But it is possible though to create a {"Ä": 12345} in python {"\x8e":12345}, not? The "Ä" is not ASCII. ... simple browser-based...
Hi Folks, Any Debian KDE users out there? The Konqueror/KHTML XMLHttpRequest bug fix has just made it into Debian Sid. If you do an: apt-get update apt-get...
[Alan Kennedy] ... [Jan-Klaas Kollhof] ... Well, yes, you can use non-ascii keys in dictionaries. Since object attributes are stored in a dictionary, you can...
... syntax error. But for JSON you want to use dictionaries not objects. And these dictionaries may contain keys with non-ascci code. On the http://json.org...
... There is no distinction between objects and dictionaries in JavaScript. They are plain objects according to ECMA-262 (ECMAScript 3rd Edition) There is just...
Neither the JSON nor the JSON-RPC specs say how data exchanged between the client and the server are to be encoded. I think messages should be encoded in...
... I agree with that and think it should go in the spec. Although in practice, due to XMLHttpRequest quirks in some browsers (with respect to problems with...
... Although UTF-16 is specified as the (internal) "representation" used by conforming ECMAScript engines I don't think it is completely relevant to the...
I have a few ideas for the protocol I'd like to share/discuss. 1. Multiple requests/responses The specs say that they are sent one after another. {...} {...} ...
... Yes, the eval is no more eval than the fact that you loaded the initial JavaScript from the same server in the first place. So this is not really an issue,...
Hello Michael, ... over HTTP and JSON-RPC over sockets. The requirements seem to be slightly different. Not realy, here an example of bidirectional multicall...
Lately,I use the JSON-RPC-Java to communicate between the client-side and the server-side in my project. I know,the principle of this RPC protocol is : the...
Unless you can open a socket connection from the client to the server which stays open, there is no way for the server to push the data as it is generated. You...
Hi All, I am using JSON, and have a need to manipulate the "anonymous" javascript object that is brokered back from JSON on the client. I want to use strongly...