Bitcoin Forum
May 24, 2024, 02:51:18 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: [1]
  Print  
Author Topic: Access from Qt  (Read 704 times)
giantdragon (OP)
Legendary
*
Offline Offline

Activity: 1582
Merit: 1002



View Profile
July 03, 2011, 12:01:18 PM
 #1

I want to access BitCoin wallet using JSON from my Qt application.
I started server, connected via QTcpSocket and send test command, but no response received.
Socket's state is connected. May be serialization problem (I used QDataStream)?
giantdragon (OP)
Legendary
*
Offline Offline

Activity: 1582
Merit: 1002



View Profile
July 03, 2011, 12:54:13 PM
 #2

Connected using HTTP protocol with QNetworkAccessManager.
giantdragon (OP)
Legendary
*
Offline Offline

Activity: 1582
Merit: 1002



View Profile
July 03, 2011, 01:00:49 PM
 #3

Sample query:

net = new QNetworkAccessManager(this);
connect(net, SIGNAL(finished(QNetworkReply*)), this, SLOT(finished(QNetworkReply*)));
QByteArray data("{\"jsonrpc\": \"1.0\", \"id\":\"curltest\", \"method\": \"getinfo\", \"params\": [] }");
net->post(QNetworkRequest(QUrl("http://my_username:my_password@localhost:8332")), data);
Pages: [1]
  Print  
 
Jump to:  

Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!