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

Yahoo! Groups Tips

Did you know...
Show off your group to the world. Share a photo of your group with us.

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 146 - 177 of 635   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
146
Hello. My name is Gaetano Giunta, and I am the main developer of the PHP XML-RPC lib. I discovered json-rpc today, and could not resist immediately starting to...
Gaetano Giunta
gaetanogiunt...
Offline Send Email
Nov 3, 2005
11:45 am
147
... XML-RPC lib. I discovered json-rpc today, and could not resist immediately starting to hack support for json-rpc into the lib (for now only avalibale in...
Jan-Klaas Kollhof
keyjaque
Offline Send Email
Nov 7, 2005
9:39 am
148
Hello, I just wanted to let you know that I put up a new RC version of the xmlrpc lib on sf.net. Besides a couple of bugs fixes and improvements, mostly in the...
Gaetano Giunta
gaetanogiunt...
Offline Send Email
Nov 22, 2005
5:03 pm
149
Hi all, just hacked up a little example for JSON-RPC. You caqn find and play with it here: http://jsolait.net/wiki/examples/jsonrpc/canvas It is a shared...
Jan-Klaas Kollhof
keyjaque
Offline Send Email
Dec 8, 2005
2:26 pm
150
Hi, I try to find out if json-rpc is an active project. On the site there are no entries past 06-2004 and it seems to be abandoned. It does sound good for our...
thomanji
Offline Send Email
Dec 15, 2005
6:59 pm
151
I have not been updating the site for a while, though the specs have been discussed here on the list and people have been sending me mails that they are impl....
Jan-Klaas Kollhof
keyjaque
Offline Send Email
Dec 16, 2005
12:51 pm
152
... JSON-RPC is mature enough not to need activity as a project, per se; it is in fact one of the really good things about it -- it is stable, solves one large...
Johan Sundström
johan_h_sund...
Offline Send Email
Dec 16, 2005
3:47 pm
153
I haven't had much time to document the various pieces of the Jayrock [1] project until just recently. Well, it's hardly documentation. A couple of weeks back,...
Atif Aziz
azizatif
Offline Send Email
Dec 19, 2005
10:10 am
154
Hi Jan, In addition to content-type, error codes and class hinting, I would also suggest adding introspection somewhat as in some XML-RPC implementations[1]....
Atif Aziz
azizatif
Offline Send Email
Dec 19, 2005
11:04 am
155
Hi, I am new to JSON RPC. I was going through the test examples given at http://oss.metaparadigm.com/jsonrpc-1.0/hello.jsp and trying to understand that. do i...
murali_padavala
Offline Send Email
Jan 5, 2006
8:14 am
156
Hi Murali, ... I see you have posted this here on the json-rpc list aswell as the json-rpc-java list. Since this list is for discussions relating to the ...
Michael Clark
michaeljclark
Online Now Send Email
Jan 6, 2006
12:19 am
157
Hi Michael, Thanks for your reply. I found out the mistake I was doing, i was not creating the new JSONRpcClient("/test/JSON-RPC") with the correct url. Thank...
Murali Krishna
murali_padavala
Offline Send Email
Jan 6, 2006
7:49 am
158
Hi, I've just launched PHP-O-Lait that provides client-side JavaScript to server-side PHP in 2 lines of boilerplate code. It also includes a JSON-Rpc enabling...
craigmasonj
Offline Send Email
Jan 12, 2006
9:02 pm
159
Cool...
Jan-Klaas Kollhof
keyjaque
Offline Send Email
Jan 13, 2006
10:31 am
160
Hi all, I am moving the http://json-rpc.org domain to a new server. The site is a bit redesiged and uses a wiki and a ticket system. The wiki is editable so...
Jan-Klaas Kollhof
keyjaque
Offline Send Email
Jan 27, 2006
5:53 pm
162
Hi, Is pyjsonrpc.zip no more available for download? Thanks in advance, Giorgi...
giorgi_lekishvili
giorgi_lekis...
Offline Send Email
Feb 6, 2006
10:48 pm
163
Hello, I am looking for resource that can help me understand server side push to a client browser using json. Can u please help with some links or examples. ...
richa
mehta_richa
Offline Send Email
Feb 7, 2006
10:36 am
164
I have a HashMap containing two elements. Map map=new HashMap(); Animal[] zoo=new Animal[4]; zoo[0]=new Animal("Alex","Lion"); zoo[1]=new...
priya iyer
priya_rajanga
Offline Send Email
Feb 7, 2006
10:46 am
165
Client-side server push can only be implemented by polling: set up a timer on the web page that polls a service on the server for new data. When new data is...
Gaetano Giunta
gaetanogiunt...
Offline Send Email
Feb 7, 2006
11:05 am
166
... This seems like Java code. Are you using JSON-RPC-Java? ... Ahhh, JavaScript 101 :) for(var key in theMap) { alert(key + "=" + theMap[key]); } ~mc...
Michael Clark
michaeljclark
Online Now Send Email
Feb 7, 2006
12:20 pm
167
Thanks so much Micheal it works was really confused about the way to use it :) ... This seems like Java code. Are you using JSON-RPC-Java? ... Ahhh, JavaScript...
priya iyer
priya_rajanga
Offline Send Email
Feb 7, 2006
1:09 pm
168
Hi, for(var key in theMap) { alert(key + "=" + theMap[key]); } I am able to access the key but if the value is say an object array (for eg in my case an...
priya iyer
priya_rajanga
Offline Send Email
Feb 8, 2006
8:37 am
169
There are a few things I have experimented with: One is using multipart HTTP. That only works in Mozilla and not in IE. see...
Jan-Klaas Kollhof
keyjaque
Offline Send Email
Feb 8, 2006
10:39 am
170
... I'm not sure if you're referring to your solution only working on Moz and IE, or Flash only working on Moz and IE. Flash 8 actually works on Moz, IE, ...
Martin Cooper
mfncooper
Online Now Send Email
Feb 8, 2006
5:02 pm
171
... Moz and ... Moz, IE, ... Yea, Flash8 works in all those browsers but not all browsers support Flash's ExternalInterface so that flash can communicate with...
Jan-Klaas Kollhof
keyjaque
Offline Send Email
Feb 10, 2006
11:10 am
172
Hi all, I added some new python code to json-rpc.org It can be found at http://json-rpc.org/browser/trunk or checked out using subversion from...
Jan-Klaas Kollhof
keyjaque
Offline Send Email
Feb 16, 2006
10:57 pm
173
... Hash: SHA1 Hi all! please find attached a patch for pyjsonrpc which adds a 'setup.py' script to facilitate installation. It also fixes a syntax error in...
Christopher Arndt
strogon14
Offline Send Email
Feb 21, 2006
2:42 pm
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
Messages 146 - 177 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