Tagged Questions
JSON data-format based (r)emote (p)rocedure (c)all protocol.
12
votes
3answers
435 views
developing a maintainable RPC system
I am working on a web application that will make extensive use of AJAX techniques for client/server communication...JSON-RPC specifically. Zend Framework is being used server-side, and it offers a ...
11
votes
4answers
895 views
How to share data between python processes without writing to disk
Helllo,
I would like to share small amounts of data (< 1K) between python and processes. The data is physical pc/104 IO data which changes rapidly and often (24x7x365). There will be a single ...
9
votes
1answer
1k views
JSON-RPC and Json-rpc service discovery specifications
I'm going to implement JSON-RPC web service. I need specifications for this. So far I had found only one resource that can be called as real specifications:
JSON-RPC 1.0 ...
7
votes
3answers
2k views
Python Twisted JSON RPC
Can anyone recommend some simple code to set up a simple JSON RPC client and server using twisted?
I found txJSON-RPC, but I was wondering if someone had some experience using some of these anc could ...
6
votes
1answer
3k views
Add Path to Erlang Search Path?
I recently installed Erlang RFC4627 (JSON-RPC) with the debian package. I ran the test server using:
sudo erl -pa ebin
and then at the prompt:
test_jsonrpc:start_httpd().
returned
ok
I ...
5
votes
2answers
419 views
Bidirectional JSON-RPC over TCP socket Java implementation
Does anyone know if some Java implementation of the JSON-RPC protocol exists with bidirectional support (there is no Client/Server, both entities can send and receive the same messages).
I know it ...
5
votes
3answers
586 views
Real-time bi-directional JSON-RPC communication over HTTP
I am building a JSON-RPC server that accepts requests over HTTP. I would like to support bi-directional communication (both client and server can send requests), the specific use case being a ...
5
votes
2answers
3k views
Non-GPL JSON-RPC library for C++
What non-GPL libraries are available for writing JSON-RPC servers and clients in native C++?
According to http://json-rpc.org/wiki/implementations, there seems to only exist one implementation of ...
4
votes
3answers
964 views
What's the best way to make one node.js server “talk” to another?
MsgPack ?
JSON-RPC ?
Socket.io (is it possible ? how ?)
EDIT:
I am talking about 2 node processes each one on a different physical machine;
I don't understand how redis can help me on this...
3
votes
1answer
66 views
Zend_Json_Server vs JSON-RPC spec
The ZF implementation of the JSON-RPC 2.0 protocol only allows error codes:
const ERROR_PARSE = -32768;
const ERROR_INVALID_REQUEST = -32600;
const ERROR_INVALID_METHOD = -32601;
const ...
3
votes
1answer
45 views
How to use the same “back end” code with both a Zend web app and a Zend JSON-RPC server?
I'm about to design a Zend web application which, in order to render its views, will use data which should also be retrievable through a JSON-RPC api, for mobile native apps. I was wondering how to ...
3
votes
1answer
101 views
Pyjamas + Django => CSRF confusion, 403 errors
I've got Pyjamas and Django running via Apache2 with mod_wsgi on Windows 7. I do not believe I'm getting issues from the setups of these things, though: the only thing that is not working is trying to ...
3
votes
3answers
988 views
How to respond to HTTP OPTIONS request on a JSON-RPC server
My JSON-RPC client (browser using dojo JSON-RPC) makes a JSON-RPC request (dojo.callRemote) to my JSON-RPC server on myserver.com/12345 (Python 2.5, SimpleJSONRPCServer).
The server then gets a HTTP ...
2
votes
1answer
23 views
Point of JSON-RPC vs simpler JSON
this is a JSON-RPC object I am implementing
{
"method":"create",
"params": [
{
"nid": "69",
"body":
...
2
votes
0answers
66 views
JSON-RPC PHP cannot connect to local bitcoind server
I try to follow this PHP developer intro for bitcoin https://en.bitcoin.it/wiki/PHP_developer_intro
I make this steps on virtual dedicated server and everything works fine. But when I tried to ...
2
votes
2answers
202 views
Which simple python based WSGI compatible jsonrpc library to use in server side for 'pyjamas'?
Recently, I came across pyjamas framework. It encourages radically different web application development approach by seperating the whole 'view' component of 'MVC' into some html + javascript ...
2
votes
2answers
344 views
JSON-RPC server via Python
I need to implement a JSON-RPC server like this:
http://pasha.cdemo.applicationcraft.com/service/json
This server will be accessed from jQuery and I have to use Python for writing it.
What library ...
2
votes
3answers
425 views
Make JSON-RPC jQuery plugin work with GAE ProtoRPC
I am trying to make these two libraries work together. But I am not sure they can connect out of the box. Before using JSON-RPC plugin I did it successfully with standard $.ajax functionality. Could ...
2
votes
1answer
136 views
Advantages of using a standard JSON-RPC implementation
I always end up using my own minimalistic wrapper for JSON-RPC (because it's trivially simple): am I missing out on something compared to standard libraries?
2
votes
1answer
512 views
JSON-RPC client in Java
I'm trying to find a way to write a java application that can communicate with a json-rpc service (The service is a python twisted server).
However I haven't been able to find a decent library with ...
2
votes
2answers
136 views
When implementing a JSONRPC 2.0 server, is it required to support both named, and positional arguments?
According the spec here: http://groups.google.com/group/json-rpc/web/json-rpc-2-0
more specifically, this section:
If present, parameters for the rpc
call MUST be provided as a Structured
...
2
votes
2answers
2k views
How to get data from a json-rpc webservice : iPad /iPhone / Objective C
I'am working on a iPad project and this project needs to talk to a json-rpc webservices. The webservices is based on Drupal with module : cck and views
1)I need to push a json object into the ...
2
votes
2answers
270 views
JSON RPC - What is the “id” for?
I don't understand what the ID is for in JSON RPC. Also, how bad is it considered to not use JSON-RPC.org's standards when developing a toolkit? There seems to be some ambiguity in the JSON-RPC world.
...
2
votes
4answers
3k views
Consuming JSON-RPC web services in .NET
A business partner has suggested building a web services library with JSON-RPC rather that SOAP. (note they are not building in .NET necessarily, but I am)
I am a potential consumer of this data.
...
2
votes
2answers
5k views
jqGrid - How does one configure jsonreader (for use with Jayrock)?
I wondered if someone might have some insight into this. jqGrid is quite happy with this JSON string:
{'page':'1','total':1,'records':'4','rows':[{'id':1,'title':'Story ...
1
vote
1answer
17 views
IIS Enable RPC Connections
I'm trying to create a JSON RPC server in Zend Framework hosted on IIS. Connections to my server work fine using this example, taken from http://site1/request.html:
<HTML>
<HEAD>
...
1
vote
1answer
48 views
How to properly call JSON-RPC in Go?
I've been trying various configurations in order to call a simple JSON-RPC server for Bitcoin in Go, but didn't manage to get anywhere.
In Python, the entire code looks like:
from jsonrpc import ...
1
vote
1answer
73 views
How do I get the request body?
I am trying to implement a simple JSON-RPC server. The client part is handled by the jquery.jsonrpc. This seems to work fine, sending a JSON-RPC message as the payload of a post message.
My JSON-RPC ...
1
vote
2answers
176 views
Perl — 'Not a HASH reference' error when using JSON::RPC::Client
I'm a newbie in Perl.
I have a JSON-RPC server running at http://localhost:19000 and I need to call checkEmail() method.
use JSON::RPC::Client;
my $client = new JSON::RPC::Client;
my $url = ...
1
vote
1answer
211 views
Recommend a JSON-RPC library for java and javascript
I'm looking around for a good solution for JSON-RPC either in JAVA and Javascript (both sides, but I don't mean it has to be the same project!).
Post your hints. I'd like a mainstream project with ...
1
vote
2answers
413 views
Python JSON RPC with jQuery - ServiceRequestNotTranslatable
I'm writing a web application using python JSON-RPC implementation - http://json-rpc.org/wiki/python-json-rpc on server side and jQuery axaj API on client side.
This is my first JSON service ...
1
vote
1answer
280 views
1
vote
1answer
504 views
How to implement a two way jsonrpc + twisted server/client
Hello I am working on develop a rpc server based on twisted to serve several microcontrollers which make rpc call to twisted jsonrpc server. But the application also required that server send ...
1
vote
2answers
194 views
RPC w/ PHP - agnostic to transport mechanism
For a recent project, I have a PHP script running as a CLI-based daemon. This daemon will be responsible for monitoring/controlling independent worker processes.
Periodically, users will issue ...
1
vote
1answer
158 views
Adding methods to a simple RPC server in a clean and separated way
I created a simple RPC server to perform certain tasks common to our teams, but which are called from different networks. The server looks like this (I don't include error handling for brevity):
from ...
1
vote
0answers
465 views
Ignore a field during Java JSON-RPC serialization; [ScriptIgnore]?
I'm getting "JSONRpcClientException: ... circular reference." when serializing my domain objects with JSON. (using jsonrpc1.0).
I'd like to maintain the domain as it is, but need to get JSON-RPC ...
1
vote
1answer
3k views
Sample code for JSON-RPC client in C#
I need a simple JSON-RPC 1.0 client in C#, preferably using .NET 2.0 or later.
I checked out JRock 0.9
They have several samples including Yahoo reader, but the samples demo JSON, not JSON-RPC.
I ...
0
votes
1answer
42 views
JSON error “Value at result of type java.lang.String cannot be converted to JSONArray” in android
I used the link for JSON RPC. I am getting a response as expected. But when i try to parse the response, it's giving me json error.
My code:
JSONEntity entity = new JSONEntity(jsonRequest);
...
0
votes
2answers
40 views
Communication/Transport protocol with GWT client side with ASP.NET C# server side
Assuming I am limited to .NET Framework 3.5 C# on the server side and GWT on the client side, what is your suggestion for the best/most efficiant way of communication + data transport protocol and ...
0
votes
1answer
67 views
Go - JSON-RPC - “too many colons”
I'm trying to call a HTTP JSON-RPC server for Bitcoin using Go (not on GAE), but I get error of
dial tcp http://user:pass@127.0.0.1:8332: too many colons in address
or
dial ip ...
0
votes
1answer
44 views
GAE Go Json-RPC call example
I'm trying to understand how to use Json-RPC calls in Google Go that would be used in a Google App Engine app. So far I understand that I somehow should call rpc.Client.Dial, but I don't understand ...
0
votes
1answer
23 views
How can I debug txJSON-Rpc calls using a javascript client and Python server?
I have implemented a wxPython app, that also has a Twisted txJSONrpc server in it. This is my RPC "server"; I can call it using a TCP socket and issue commands.
There is a Python test script called ...
0
votes
0answers
21 views
Json Rpc callback function
How can I pass Json Rpc data to a specified callback function, just like Json.
You can get the response data by specifying the callback parameter in the url.
For example:
var url = ...
0
votes
0answers
24 views
Json Rpc ListMessages on yahoo services
How can I List messages on yahoo mail using Json RPC, I have used the code provided by yahoo
http://developer.yahoo.com/mail/docs/user_guide/CredentialTheUser.html
here's the code
To retrieve the ...
0
votes
1answer
27 views
JSON Query Based on API Manual
I have an api reference at http://manuals.kerio.com/connect/api/en/reference/interface_users.html#ae91a3b16262c8a873d1c73b53e0e45b4 that contains the following:
void Users::get (out UserList list,
...
0
votes
1answer
41 views
JSON-RPC for Java wich one to choose? [closed]
There are so many of JSON-RPC realizations for java on wikipedia. Which one worth to use?
jsonrpc4j
json-rpc
qooxdoo
jpoxy
jabsorb
Jettison
JSON Service
LEWOStuff
JSON-RPC 2.0 Server
...
0
votes
0answers
29 views
Perl JSON::RPC out of order
I am using JSON::RPC (1.1) http://search.cpan.org/~dmaki/JSON-RPC-1.01/lib/JSON/RPC/Legacy.pm and when I get the message to process my data is out of order. Is this something I am doing wrong or do I ...
0
votes
0answers
103 views
HowTo: Invoking a javascript jsonrpc callback-function in a Android webview?
I am trying to convert this Google Translate JavaScript code into my Android app.
All is good, but when the
GoogleV2TranslateStart(String btn_translate_id_ID)
, function is trying to call the ...
0
votes
0answers
25 views
jsonrpc2 returning remote reference
I'm exploring jsonrpc 2 for a web service. I have some experience with java rmi and very much liked that. To make things easy I using the zend framework so I think I like to use that library. There is ...
0
votes
0answers
85 views
WCF server and client for JSON-RPC
I wonder if JSON-RPC is supported out of the box by WCF? I need to implement a service, supporting cross-domain calls, w/out using JSONP.
I heard about custom frameworks like Jayrock etc. - but I ...