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

Yahoo! Groups Tips

Did you know...
Want your group to be featured on the Yahoo! Groups website? Add a group photo to Flickr.

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 108 - 138 of 635   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
108
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...
Stephan Diehl
stedi1967
Offline Send Email
Sep 1, 2005
8:19 am
109
... 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...
Jan-Klaas Kollhof
keyjaque
Offline Send Email
Sep 1, 2005
11:13 am
110
... Ahh. In that case the HTTPConnectionHandler implementation in jsonrpc (out of pyjsonrpc.zip) is probably faulty. urllib (or urllib2 for that matter) sets...
Stephan Diehl
stedi1967
Offline Send Email
Sep 1, 2005
11:23 am
111
... 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...
Jan-Klaas Kollhof
keyjaque
Offline Send Email
Sep 1, 2005
12:51 pm
112
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...
Atif Aziz
azizatif
Offline Send Email
Sep 7, 2005
3:03 pm
113
... , ... In my implementation, I originally started with the text/javascript, assuming that JSON being a subset of JavaScript, it would qualify as a complete...
Atif Aziz
azizatif
Offline Send Email
Sep 9, 2005
10:39 pm
115
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...
lorphos
Offline Send Email
Sep 25, 2005
11:35 am
116
... 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...
Michael Clark
michaeljclark
Online Now Send Email
Sep 25, 2005
12:28 pm
117
... 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...
lorphos
Offline Send Email
Sep 25, 2005
5:01 pm
118
There is nothing in the JSON-RPC specification that mandates the use of XMLHttpRequest. The specification simply says how the request and response messages...
Atif Aziz
azizatif
Offline Send Email
Sep 25, 2005
5:04 pm
119
... Can you elaborate on this? I thought I can't access the data sent until it's done (status 4). Got a URL with more details about this? -Sven...
lorphos
Offline Send Email
Sep 25, 2005
6:40 pm
120
... 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...
Michael Clark
michaeljclark
Online Now Send Email
Sep 26, 2005
12:05 am
121
... 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...
Michael Clark
michaeljclark
Online Now Send Email
Sep 26, 2005
12:19 am
122
... 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...
Atif Aziz
azizatif
Offline Send Email
Sep 26, 2005
6:49 am
123
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 ...
Stephan Diehl
stedi1967
Offline Send Email
Sep 26, 2005
8:12 am
124
... We chose "text/x-json" for zope3 implementation. "text/xml" is the content-type for the other rpc types, SOAP and xml-rpc, so ...
Jim Washington
jimcburg
Offline Send Email
Sep 26, 2005
11:34 am
125
... Excelent. Then 'text/x-json' it is. ... Stephan...
Stephan Diehl
stedi1967
Offline Send Email
Sep 26, 2005
12:21 pm
126
... 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...
Michael Clark
michaeljclark
Online Now Send Email
Sep 26, 2005
3:16 pm
127
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...
Stephan Diehl
stedi1967
Offline Send Email
Sep 26, 2005
4:38 pm
128
... 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. ......
Michael Clark
michaeljclark
Online Now Send Email
Sep 26, 2005
5:13 pm
129
... Agreed. ... I think it should be part of the spec. Perhaps "json-rpc" would be a good name for the parameter. -Sven...
lorphos
Offline Send Email
Sep 26, 2005
8:08 pm
130
... 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...
Johan Sundström
johan_h_sund...
Online Now Send Email
Oct 3, 2005
1:08 am
131
Just a note about Opera incompatibilities: Opera 8.5 allows setting content-type in XMLHttpRequest. So, sniffing for '{' is not necessary anymore server-side....
Jim Washington
jimcburg
Offline Send Email
Oct 18, 2005
1:47 pm
132
... I've been following this thread silently for a while, waiting for someone to suggest the Content-Type text/javascript, but to no avail, so I suppose I'll...
Johan Sundström
johan_h_sund...
Online Now Send Email
Oct 20, 2005
7:39 am
133
I am not sure that the content type on the client side has much relevance. The data comes in through the http request and the headers are never inspected by...
Jan-Klaas Kollhof
keyjaque
Offline Send Email
Oct 20, 2005
10:15 am
134
... Hm. I was under the impression we were discussing the Content- Type header sent by the server to the client. In the other direction I suppose it might not...
Johan Sundström
johan_h_sund...
Online Now Send Email
Oct 20, 2005
11:18 am
135
... +1 but in light of yesterdays mail from Jim (see below) I'd prefer 'application/x-javascript' as the mimetype. Stephan ... Just a note about Opera...
Stephan Diehl
stedi1967
Offline Send Email
Oct 20, 2005
11:20 am
136
... I think the case against text/javascript is simpler than that. I've discussed it before in this group, but perhaps it helps to expand with some concrete...
Atif Aziz
azizatif
Offline Send Email
Oct 20, 2005
11:50 am
137
... Also +1 on application/json-rpc from the client. I've done some googling. Apparently, "application/javascript" and "application/ecmascript" may soon be...
Jim Washington
jimcburg
Offline Send Email
Oct 20, 2005
11:58 am
138
... Ack! Opera8.5 fails on application/javascript, so application/x-javascript is the pragmatic content-type from the server for the moment. -Jim Washington...
Jim Washington
jimcburg
Offline Send Email
Oct 20, 2005
12:32 pm
Messages 108 - 138 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