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 175 - 205 of 635   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
175
Hello Folks- I'm trying to make a wsgi app for json-rpc. Is there any client side code available? I noticed that the proxy stuff didn't appear to be ...
m h
matt_harrison
Offline Send Email
Mar 16, 2006
1:44 am
176
... No, my new python impl has no client side stuff yet. I do have some older code laying around which had a ServiceProxy class. If I find it I could send it...
Jan-Klaas Kollhof
keyjaque
Offline Send Email
Mar 16, 2006
10:18 am
177
... Jan- Thanks for the response. I'd very much like to look at the previous code, if you or anyone else on the list can send it to me;) So since half the...
m h
matt_harrison
Offline Send Email
Mar 17, 2006
1:43 am
178
... The \0 is not standard in any way, actually the specs do not mention how multiple messages are seperated, it just said there can be multiple messages one...
Jan-Klaas Kollhof
keyjaque
Offline Send Email
Mar 17, 2006
11:58 am
179
Hello, I've just discovered the JSON RPC project and I like the idea. I don't know what if the status of the specifications, and if they are likely to be...
cdvddt
Offline Send Email
Mar 20, 2006
7:01 pm
180
Hi, ... I like the idea. A couple thoughts. If all parameters are named parameters then it should be fairly easy to trasnlate them to method calls in current...
Jan-Klaas Kollhof
keyjaque
Offline Send Email
Mar 20, 2006
7:29 pm
181
... I see that in sendMessage you use self.messageDelimiter, but in handlePartialData there are appearances of "\0" that should be using ...
m h
matt_harrison
Offline Send Email
Mar 20, 2006
7:43 pm
182
I've been giving this some thought for a while now and it's one of things I am planning to add to Jayrock over the next two weeks or so. You're totally right...
Atif Aziz
azizatif
Offline Send Email
Mar 20, 2006
8:55 pm
183
I'm doing really simple code here to try and talk to my jsonrpc server: <html> <head> <title>Test</title> <script type="text/javascript"...
m h
matt_harrison
Offline Send Email
Mar 21, 2006
1:35 am
184
If anyone cares, I got it working (using JSONRPCMethod but not ServiceProxy using the latest nightly code). In my previous example I was using 1.1 code. ...
m h
matt_harrison
Offline Send Email
Mar 22, 2006
12:36 am
185
I've created two bugs on trac. One to address the "\0" issue and another one about registering functions as services. So is anyone out there using this (the...
m h
matt_harrison
Offline Send Email
Mar 22, 2006
12:47 am
186
... That's a bug. I will fix that. What it does it just takes \n and \0 as delimiters. it should also take the delimiter into account. ... Yes, that has been...
Jan-Klaas Kollhof
keyjaque
Offline Send Email
Mar 22, 2006
1:57 pm
187
Hi ... we are in JavaScript so the new keyword might be the solution m=new json.JSONRPCMethod(...) Jan PS. prefering python over JS I have been thinking to let...
Jan-Klaas Kollhof
keyjaque
Offline Send Email
Mar 22, 2006
2:03 pm
188
... whoops! my bad. Don't program in js for a while and you forget about stuff like "new".... ... I wouldn't cater to python people. Make JS easy for JS...
m h
matt_harrison
Offline Send Email
Mar 22, 2006
5:22 pm
189
... Based on my experiences of jsolait from a year ago, and highly prejudiced: Mochikit/Dojo: unobtrusive module systems, adding framework on the side that you...
Johan Sundström
johan_h_sund...
Offline Send Email
Mar 25, 2006
11:47 pm
190
Johan- Thanks for your feedback. I'll probably use mochi or dojo eventually. Right now I want to make sure that I'm doing the backend right (since I'm doing a...
m h
matt_harrison
Offline Send Email
Mar 25, 2006
11:58 pm
191
... backtraces from the console, showing the source of most errors in module code as some inheritModule call, and possibly just of a module that inherited the...
Jan-Klaas Kollhof
keyjaque
Offline Send Email
Mar 27, 2006
10:39 am
192
Folks- Here's an article describing how to use the jsonrpclib code I wrote. ...
m h
matt_harrison
Offline Send Email
Mar 27, 2006
8:24 pm
193
Hi all, I have updated the code on json-rpc.org. The handling of multiple incoming messages is changed to work without the previously implemented...
Jan-Klaas Kollhof
keyjaque
Offline Send Email
Apr 4, 2006
7:51 am
195
Sorry guys, couldn't resist posting... PHPXMLRPC version 2.0 final is now out, as is the phpxmlrpc-extras package, both available for download from...
Gaetano Giunta
gaetanogiunt...
Offline Send Email
Apr 26, 2006
11:14 am
196
Hello all, I am happy to announce that Atif Aziz has volunteered to work on the next specs of JSON-RPC. He is currently working on JSON-RPC 1.1 and will be...
Jan-Klaas Kollhof
keyjaque
Offline Send Email
Apr 27, 2006
7:17 pm
197
The JSON-RPC specification describes a simple yet effective protocol for remote procedure calls based on JSON data. Its lightness is what makes it very...
Atif Aziz
azizatif
Offline Send Email
Apr 27, 2006
11:47 pm
198
Thanks for stepping forward Atif. Why not place the draft on the wiki? Then send around announcements and request for comments to groups that might be...
m h
matt_harrison
Offline Send Email
Apr 28, 2006
12:12 am
199
... IMHO the specs should also take into consideration that there is more then simple Functions but OOP in this world. So it would be very nice to have a means...
Arne Blankerts
theseer_netp...
Offline Send Email
Apr 28, 2006
8:35 am
200
... The test-form was added as an after-tought, and as such still has many rough edges. But there are some problems I have with asking directly the users...
Gaetano Giunta
gaetanogiunt...
Offline Send Email
Apr 28, 2006
8:41 am
201
... more then simple Functions but OOP in this world. ... and/or class a function is in, avoiding the need to write either crappy wrappers or introduce...
Jan-Klaas Kollhof
keyjaque
Offline Send Email
Apr 28, 2006
9:43 am
202
... I don't think that the specs should define how method names are to be mapped to the objects handling them. << I agree with Jan here. URI/URLs already...
Atif Aziz
azizatif
Offline Send Email
Apr 28, 2006
10:14 am
203
... My point was rather to have a standard way of handling this so to gain interoperability. It is kind of pointless - imho - to use different mappings for...
Arne Blankerts
theseer_netp...
Offline Send Email
Apr 28, 2006
10:31 am
204
... Maybe it might be a good idea to modularize the spec. a. have a lowlevel JSON-RPC communication part b. bindings for existing transport layers(HTTP,...
Jan-Klaas Kollhof
keyjaque
Offline Send Email
Apr 28, 2006
10:33 am
205
Hi Matt, I wanted to get the spec to a reasonable first-draft level before publishing. I wanted to use this group to collect the initial feedback on the items...
Atif Aziz
azizatif
Offline Send Email
Apr 28, 2006
10:36 am
Messages 175 - 205 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