Search the web
Sign In
New User? Sign Up
json-rpc
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Real people. Real stories. See how Yahoo! Groups impacts members worldwide.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 1 - 30 of 635   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
1
Hello and welcome to the JSON-RPC group. I am currently writing on the specs found at http://jsonrpc.kollhof.net. Any comments or suggestions will be...
Jan-Klaas
keyjaque
Offline Send Email
Mar 14, 2004
7:24 am
2
Hello, I have updated the http://jsonrpc.kollhof.net/ page. Here some issues: 1.1 arguments Should we allow named arguments as found for example in Python? ...
Jan-Klaas Kollhof
keyjaque
Offline Send Email
Mar 15, 2004
9:47 am
3
Well, I am basically talking to myself here, but maybe some day more people will join. JSON-RPC has moved to it's own domain, http://json-rpc.org I have been...
Jan-Klaas Kollhof
keyjaque
Offline Send Email
Mar 27, 2004
7:15 pm
4
Hi Jan-Klaas, ... No, your not the only one here. I found your great project and have been writing a Java implementation of the protocol. It is great idea and...
Michael Clark
michaeljclark
Offline Send Email
Mar 28, 2004
12:24 pm
5
Hello, ... Good to hear. ... You are talking about a complete Object Brocker/Object Acsess Protocol There are a few problems though. What hapens with object...
Jan-Klaas Kollhof
keyjaque
Offline Send Email
Mar 31, 2004
11:39 am
6
... I have my code up on the web now: http://oss.metaparadigm.com/jsonrpc/ ... I've ended up creating a new server proxy and encoding the object_id into the...
Michael Clark
michaeljclark
Offline Send Email
Mar 31, 2004
3:01 pm
7
Hi, ... I'll link it on the impl page. ... Please do. Also, I am not sure how much I like the system.listMethods ... My old JS and python impl. supported it...
Jan-Klaas Kollhof
keyjaque
Offline Send Email
Mar 31, 2004
3:20 pm
8
... Thanks. ... Yes. Will be working on it a little more this weekend and will take a look at your new code. BTW - having some trouble using jsolait in...
Michael Clark
michaeljclark
Offline Send Email
Mar 31, 2004
3:41 pm
9
Hello, ... jsolait uses HTTPRequest object in Moz and in IE the equivalent. I don't think that works on the Mac or in Konq. :( To avoid import errors you can...
Jan-Klaas Kollhof
keyjaque
Offline Send Email
Mar 31, 2004
4:31 pm
10
... Does work okay in latest Safari on MacOS X 10.3 though (they must have recently added the XMLHttpRequest object). ... Yes, tried again like this and konq...
Michael Clark
michaeljclark
Offline Send Email
Mar 31, 2004
5:18 pm
11
Hello, The simple json protocol does not satisfy all needs. Only simple data types, sequences and collections are supported. There is not even a native Date...
Jan-Klaas Kollhof
keyjaque
Offline Send Email
Apr 4, 2004
1:29 pm
12
Hey there, ... JSON-RPC sounds like a great idea, I have played around with it a bit ever since I saw notes about it in the DomAPI forum. Here is a site that...
Gaston Jeremy
gastonjy
Offline Send Email
Apr 4, 2004
7:02 pm
13
Hi, I've continued the work on my JSON-RPC-Java implementation and have been adding some basic ORB funcationality. * References - Objects of classes registered...
Michael Clark
michaeljclark
Offline Send Email
Apr 5, 2004
4:04 am
14
Hi, ... Here is how I would do the proxy objects: Exampe: rpc.Request("id", "getSomeObj", []) rpc.Response("id", rpc.ProxyObj("objID", ["method1",...
Jan-Klaas Kollhof
keyjaque
Offline Send Email
Apr 5, 2004
9:03 am
15
... I liked this idea originally but have been thinking about it. My problem is this: JSON is a standard and this embedded procedure call within a JSON object...
Michael Clark
michaeljclark
Offline Send Email
Apr 7, 2004
3:42 am
16
... or more like you had suggested but instead as a plain JSON object { JSONRPCType: "Proxy", objectID: "9d9ef3a6", methods: ["foo", "bar"] } ... The other...
Michael Clark
michaeljclark
Offline Send Email
Apr 7, 2004
3:55 am
17
Hi, OK, I have heard that argument before about the function calls. I don't think it is very hard to parse though. But I can see the point and agree with...
Jan-Klaas Kollhof
keyjaque
Offline Send Email
Apr 7, 2004
12:50 pm
18
Finally I found some time again to work on JSON-RPC. I have updated the spec to include class hinting. This is accomplished by introducing a special property...
Jan-Klaas Kollhof
keyjaque
Offline Send Email
Jun 13, 2004
12:49 pm
19
Hello, JSON-RPC was presentedn in two presentations at the SVGOpen 2004 in Tokyo. It was used to show how client/server communication can be done in SVG and as...
Jan-Klaas Kollhof
keyjaque
Offline Send Email
Sep 16, 2004
8:47 am
20
Hello, I'm currently working on PHP implementation of the JSON-RPC I have designed code for PHP4 and going to start working on PHP5 work. Will let you know how...
Dmitry Durach
ddurach
Offline Send Email
Sep 16, 2004
9:16 am
21
Hi, ... Great to hear, another JSON-RPC impl. This will be the 4th besides Java, JavaScript and python. ... Please do. Jan...
Jan-Klaas Kollhof
keyjaque
Offline Send Email
Sep 17, 2004
4:28 pm
22
Hello list! I am just a json-rpc newbie and I just want to know if there's any way, I can add custom error messages on json-rpc error field. I'm currently...
Joseph Ross Lee
jrosslee
Offline Send Email
Oct 4, 2004
11:11 am
23
hi, The python lib is a very rudamentary impl. There is not a whole lot of room for customization. Whenever a method of a service is executed and an error...
Jan-Klaas Kollhof
keyjaque
Offline Send Email
Oct 6, 2004
11:58 am
24
Ah ok. So, there's really no easy way of adding puting error messages to json error field using python json-rpc lib? If its possible, how can it be done? Does...
Joseph Ross Lee
jrosslee
Offline Send Email
Oct 6, 2004
1:09 pm
25
Hello, ... messages to json error field using python json-rpc lib? Depends on how you interpret "easy". :) You would need to change the python impl. I made it...
Jan-Klaas Kollhof
keyjaque
Offline Send Email
Oct 7, 2004
8:52 am
26
what's the best json-rpc server available? python? Joseph Ross Lee...
Joseph Ross Lee
jrosslee
Offline Send Email
Oct 12, 2004
9:15 am
27
Hi, That's a good question :). I know that Dimitri Durach is witing a PHP impl. and Michael Clark has a Java impl. and then there is my python impl. I have...
Jan-Klaas Kollhof
keyjaque
Offline Send Email
Oct 12, 2004
4:58 pm
28
Any new updates on JSON? AJ...
AJ Batac
ajbatac
Offline Send Email
Oct 26, 2004
7:38 pm
29
Hi all, ... JSON-RPC? Nothing new realy. I am thinking of adding sockets to JavaScript in HTML using an applet. But have not had the time. I already have an...
Jan-Klaas Kollhof
keyjaque
Offline Send Email
Oct 27, 2004
9:00 am
30
Hi Dmitry Any chance of sharing your PHP4 code with me? I have been using RPC via the DomAPI libary but am looking for something a bit more lightweight. My...
joshbaalman
Offline Send Email
Nov 22, 2004
8:36 pm
Messages 1 - 30 of 635   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help