json-rpc Questions
4
Solved
I am using json-rpc-1.0.jar.Below is my code. I need to convert InputStream object into JSON since the response is in JSON.
I did verify the json response obtained from Zappos API. It is valid.
P...
5
Solved
I am working on an android app that get json content of a webservice called "WebUntis". The Json content i am getting looks like:
{"jsonrpc":"2.0","id":"req-002",
"result":[
{"id":125043,"date":...
2
Are there any Documentation Tools for JSON RPC API's?
I found a lot which are perfect for RESTful API's (Slate, Spotlight, Swagger) but sadly none suitable for JSON RPC API's.
Ideal would be a Too...
Winker asked 15/10, 2018 at 8:52
2
I'm thinking about trying to implementing a client for a particular json-rpc 2.0 service that could give a user some static typing guarantees. The API in question is very large, so actually writing...
Frasco asked 12/1, 2019 at 21:32
2
Solved
The following Vanilla JS example connects to and disconnects from the Solana blockchain via Phantom wallet.
It successfully connects and gets the public address.
It fails when trying to use a JSON-...
Andante asked 18/10, 2021 at 1:25
1
I started running RSK node on Windows and when I tried:
curl -X POST -H "Content-Type:application/json" --data '{"jsonrpc":"2.0","method":"eth_blockNumb...
0
Using OpenEthereum, which is the json rpc call allowing to do it?
I found the parity_pubsub module but I ve no idea of the parameter for getting not yet confirmed transactions.
I also found https:/...
Heap asked 1/12, 2020 at 17:30
1
I've created core WebAPI project and while RESTing performs quite good, there's also a need in JSON-RPC functionality.
I saw things like this or this, but still don't know which one of them is pre...
Tytybald asked 28/2, 2019 at 6:11
2
I have a 32602 error for all requests using dictionary as params, whereas these work with a simple params.
For example:
curl -d '{"id":"json","method":"add","params":[1,2] }' -o – ‘http address f...
1
Solved
I don't like tools that do many things at once. So GRPC seems to me overhead, it's like kubernetes.
GRPC is the tool that combines actually two things: extended Protobuf (Service support) and HTTP...
Coacher asked 8/11, 2019 at 13:25
3
Solved
I have some strange thing happening on my Android studio dart console : every second there is this message :
Failed to send request: {"jsonrpc":"2.0","id":"9354","method":"getVM","params":{}}
The...
Console asked 7/1, 2019 at 17:34
4
Solved
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 publi...
Padua asked 27/1, 2011 at 23:28
1
Solved
Could anybody explain advantage of using json-rpc over json-api and vice-versa? First and second format are JSON-based, but where I should use one, and where is another?
2
Solved
I'm using PHP and curl with json to interact with my geth server.
I'm able to do all I want except one thing: checking if user's inputted address is valid according to ethereum wallet format.
I s...
14
I'm trying to chose between REST and JSON-RPC for developing an API for a web application. How do they compare?
Update 2015: I have found REST easier to develop and use for an API which is...
2
Solved
I was thinking about JSON/XML-RPC over HTTP vs TCP. In case of HTTP, the HTTP request and response provide a message framing mechanism. However, since TCP is a stream,
How are RPC messages framed...
2
Solved
I am trying to get a value from a response object in a dictionary, but I keep running into this error, am I wrong in thinking you __getitem__ is more commonly used for indexing in classes?
Here is...
Straddle asked 19/9, 2015 at 7:40
5
Solved
I'm trying to use shiny-server as a process server: receive URL request, process R subroutines and output JSON as a result. but I have been unable print the output directly to the browser in JSON.
...
Hydrosome asked 15/11, 2013 at 1:7
2
Solved
I would like to know how to make the following HTTP call using C#.
http://user:pass@localhost:8080/jsonrpc?request={"jsonrpc":"2.0","method":"VideoLibrary.Scan"}
When I paste this url directly i...
4
Solved
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 http://json-rpc.org/wiki/s...
Overjoy asked 14/4, 2010 at 9:39
1
Solved
I am new to AVRO and please excuse me if it is a simple question.
I have a use case where I am using AVRO schema for record calls.
Let's say I have avro schema
{
"name": "abc",
"namepsace": "x...
Gina asked 17/5, 2016 at 14:31
2
Solved
I have "hello world" rpc service written in golang. It works fine and go jsonrpc client is working. But I need to send request with curl and this example doesn't work:
curl \
-X POST \
-H...
5
Solved
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 co...
0
I read some discussions about RPC style and RESTful web services.
So far I have the following 2 thoughts:
The argue between RPC and REST seems kind of similar to the argue
between CISC and RISC ...
Convey asked 6/1, 2016 at 2:48
2
Solved
I am considering to implement JSON-RPC for my web service with this library. I would also like to implement Swagger for my service.
However, I am not sure, if these two are a good combination toge...
1 Next >
© 2022 - 2024 — McMap. All rights reserved.