Questions tagged [json-rpc]

JSON-RPC is a standard JSON data-format based (r)emote (p)rocedure (c)all protocol.

See http://json-rpc.org/ for specification and implementations for various languages.

JSON stands for JavaScript Object Notation. It is a text-based lightweight data-interchange format. See http://www.json.org/ for details.

RPC stands for remote procedure call, which is a family of protocols. See the Wikipedia article Remote procedure call for origins, current variations and applications.

673 questions
-1
votes
1 answer

Parse JSON string from remote URL in Android

Well I'm new to Android. I'm getting a JSON string from a remote…
Jenson M John
  • 5,499
  • 5
  • 30
  • 46
-1
votes
1 answer

JSON-RPC for windows phone 8.1

I have to use JSON-RPC for my Windows phone 8.1 app. I have been google-ing for hours and haven't found anything related to JSON-RPC AND Windows phone 8.1 (or even 8). I have found multiple JSON examples and also JSON-RPC libraries for windows phone…
WereWolfBoy
  • 498
  • 1
  • 4
  • 23
-1
votes
1 answer

BitcoinPHP using JSON-RPC-PHP : how does it works?

I am trying to setup http://bitcoinphp.com/ on my wampserver. But in the configuration file "bitcoin.php" there is written : $username="username"; $password="password"; $serveraddress="serveraddress"; $bitcoin = new…
raph77777
  • 111
  • 1
  • 8
-1
votes
3 answers

php-aria2 JSONRPC Empty reply from server

I use php-aria2 to download remote files. But all request to 127.0.0.1:8100/jsonrpc returns null. aria2c works fine from command line. When I run this from command line curl http://127.0.0.1:6800/jsonrpc -H "Content-Type: application/json" -H…
ruki-ruki
  • 1
  • 4
-1
votes
1 answer

Looking for an ActionScript library for server-side JSON-RPC

I'm planning to integrate RPC via JSON-RPC in my Flex applications. I've searched around the net and already found librarys for calling remote methods, but I also need to offer methods myself. None of the libs I found seemed to have this…
Markus
  • 452
  • 3
  • 12
-2
votes
1 answer

What is an rpc network address?

I'm trying to use random.org to generate random numbers in my go program. It seems like I need to establish a json-rpc connection, so I'm trying to use the method jsonrpc.Dial(network, adress). All the api says is that I need to invoke…
lolad
  • 321
  • 6
  • 13
-2
votes
1 answer

Problems with python-bitcoinrpc and python-monerorpc

I am having problems connecting to both bitcoin and monero's RPC servers. I am using python-bitcoinrpc and python-monerorpc as libraries and somehow they cannot connect at the same time. Here is the code i am using: from monerorpc.authproxy import…
-2
votes
1 answer

How to grab values to a variable from the result of API JSON-RPC response

{ "jsonrpc": "2.0", "id": "123", "result": { "columns": [ "Unit Number", "Tank Number", "Volume", "Volume Percent", "Description", "Capacity", …
Momo
  • 79
  • 3
-2
votes
1 answer

how to take value from this long json file and it will increase itself after a new transaction and i need latest transaction

How to take value from this kind of long JSON file in c# currently I am using dynamic variable in c# but it will not work if I need latest JSON transaction because dynamic variable hold value of a particular location but its local will increase…
Jitender
  • 330
  • 2
  • 11
-2
votes
3 answers

Populate a html div with json data received from a server

I need to have a html div populated with the json data received from the server which is a json-rpc server and it retruns an application/jsson-rpc content type and i can see the result in the chrome and firefox dev tools... I need to view it as part…
Gideon Maina
  • 849
  • 10
  • 25
-3
votes
1 answer

Gcloud is not intiating the json rpc client in nodejs app

I have a nodejs app which is integrating to simplybook.me using jsonrpc. the integration is working good on my local server. but the client is failed to initialize when I run it over gcloud app. file: index.js: ` const JSONRpcClient =…
-3
votes
1 answer

nullpointerexception error. trying to connect to the bitcoin server from my phone

I am fairly new to android, java, and mainly jsonrpc... I have been stuck on this error for some time and i dont know if it is how i have coded it that is causing the issue or if i am trying to connect to the wrong server... If you could help, it…
-4
votes
1 answer

Why does my .exe generated by PyInstaller not start?

I generated an executable file with PyInstaller, but when I want to launch the application the console window shows me, that it couldn't find a directory or file. I checked the location and the folder "_MEI55762" is indeed not present. Did anyone…
pfra
  • 5
  • 1
  • 5
1 2 3
44
45