Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • Users
  • Groups
  • Search
  • Get Qt Extensions
  • Unsolved
Collapse
Brand Logo
  1. Home
  2. Special Interest Groups
  3. C++ Gurus
  4. QT5 - Posting JSON in server not working.

QT5 - Posting JSON in server not working.

Scheduled Pinned Locked Moved C++ Gurus
3 Posts 3 Posters 3.8k Views
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • J Offline
    J Offline
    jeyas
    wrote on last edited by
    #1

    Hi friends,

    Here is my code, i'm trying to post my json in server but its not working, can u plz help me..
    I'm using QT5 version.

    @QVariantMap top;
    top.insert( "email", QString( "test@gmail.com" ) );
    top.insert( "test", QString( "test123" ) );
    const QJsonDocument doc = QJsonDocument::fromVariant(top);
    QByteArray postData;

    postData = doc.toJson();
    QString strData;
    strData = doc.toJson();

    QNetworkAccessManager manager = new QNetworkAccessManager(this);
    connect(manager, SIGNAL(finished(QNetworkReply
    )),
    this, SLOT(replyFinished(QNetworkReply*)));

    manager->get(QNetworkRequest(QUrl("http:/..../licenses")));

    QNetworkRequest req;
    req.setUrl(QUrl("http:/..../licenses"));
    req.setHeader(QNetworkRequest::ContentTypeHeader,"application/json");
    manager->Accessible;
    QNetworkReply *reply=manager->post(req,postData);
    connect(reply,SIGNAL(uploadProgress(qint64,qint64)),this,SLOT(updateProgress(qint64,qint64)));@

    Thanks
    Jeyaraman S

    1 Reply Last reply
    0
    • V Offline
      V Offline
      Vincent007
      wrote on last edited by
      #2

      I guess it is because Content-Length is lacked

      1 Reply Last reply
      0
      • niqtN Offline
        niqtN Offline
        niqt
        wrote on last edited by
        #3

        Have you solved your problemm?

        1 Reply Last reply
        0

        • Login

        • Login or register to search.
        • First post
          Last post
        0
        • Categories
        • Recent
        • Tags
        • Popular
        • Users
        • Groups
        • Search
        • Get Qt Extensions
        • Unsolved