Author

Topic: Consuming JSON-RPC from Bitcoin using .net (Read 5256 times)

sr. member
Activity: 294
Merit: 252
February 28, 2011, 04:18:30 PM
#7
You can take a look at my sources here: https://github.com/Fnordsoft/Bitcoin-Projects/tree/master/Libraries/Bitcoin/src/JSON-RPC

I didn't want to use a JSON library, so I decided to write my own wrapper. It seems to work ok, at least for Bitcoin, though it is not complete.
newbie
Activity: 4
Merit: 0
February 28, 2011, 04:01:27 PM
#6
I am, yes.


            WebRequest request = GetWebRequest(new Uri(Url));
            request.Method = "POST";
            request.ContentType = "application/json-rpc";
            request.Credentials = new NetworkCredential("", "");

I am creating the request via the JayRock JsonObject type.

            using (var stream = request.GetRequestStream())
            using (var writer = new StreamWriter(stream, Encoding.UTF8))
            {
                var call = new JsonObject();
                call["id"] = Convert.ToString(++_id);
                call["method"] = method;
                call["params"] = args;
                call.Export(new JsonTextWriter(writer));
            }

Thanks very much for the reply BTW :-)
legendary
Activity: 1652
Merit: 2300
Chief Scientist
February 28, 2011, 03:32:30 PM
#5
Are you setting the ContentType as described here:
  https://en.bitcoin.it/wiki/API_tutorial_(JSON-RPC)#.NET_(C_)
newbie
Activity: 4
Merit: 0
February 28, 2011, 02:55:58 PM
#4
What was your issue and how did you resolve it? I am trying to do the same thing, and have username and password set, and the allowed ip set to *.*.*.*

I keep sending out a request like this
{"id":"1","method":"getinfo","params":[]}

but i am constantly getting back this
{"result":null,"error":{"code":-32700,"message":"Parse error"},"id":null}

any clue on what I am doing wrong?
newbie
Activity: 44
Merit: 0
December 09, 2010, 01:06:38 PM
#3
Bingo!

Im ok now, I think I am on top of it.
newbie
Activity: 44
Merit: 0
December 09, 2010, 12:52:40 PM
#2
Hi davidonpda thanks for the response,

Yes I am running it with -server and I am able to access the commands via the command line.
I am able to authenticate but when I make a JSON-RPC call to bitcoin I get no errors.
Have you ever tried this with .net/jayrock or any other .net package ?

Thanks again,

BC
newbie
Activity: 44
Merit: 0
December 09, 2010, 12:30:56 PM
#1
Hi guys,

Does anyone have any experience Consuming JSON-RPC from Bitcoin using (c#) .net?
I have been trying to get a basic application to work using jayrock but I cant get any of the methods to return JSON to me.

Any help here would be appreciated.

Cheers,

BC
Jump to: