Qt Forum

    • Login
    • Search
    • Categories
    • Recent
    • Tags
    • Popular
    • Users
    • Groups
    • Search
    • Unsolved

    Unsolved QNetworkAccessManager and POST return

    General and Desktop
    qnetworkaccessm post return
    5
    12
    16852
    Loading More Posts
    • 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.
    • H
      Helson last edited by Helson

      Hello,

      networkMgr = new QNetworkAccessManager(this);
      connect(mpNetworkMgr, SIGNAL(finished(QNetworkReply*)), this, SLOT(onFinishedValidation(QNetworkReply*)));
      
      mpNetworkMgrSend->post(request, datatoSend);
      
      void MyClass::onFinishedValidation(QNetworkReply *reply)
      {
       	QString data = (QString) reply->readAll(); //It's works!
      }
      

      With this code I below I can't read the response:

      QNetworkReply* reply;
      reply = mpNetworkMgrSend->post(request, datatoSend);
      QString data = (QString) reply->readAll();
      
      

      Why the only way to read the response is inside the slot onFinishedValidation?
      Exist a way to read the response outside of slot or both?

      Thank you!

      jsulm 1 Reply Last reply Reply Quote 0
      • B
        bsomervi last edited by

        QNetworkAccessManager is designed to work with the Qt event loop. It is event driven and it communications with you also by events. The QNetworkReply::finished() or QNetworkAccessManager::finished(QNetworkReply *) slots are not the only place results can be read, you can also connect the QNetworkReply::readReady() signal and get results incrementally as they stream in.

        H 1 Reply Last reply Reply Quote 1
        • H
          Helson @bsomervi last edited by

          @bsomervi
          Thanks for your elucidation.
          if it is not asking too much, you can show an example or something about?

          1 Reply Last reply Reply Quote 0
          • jsulm
            jsulm Lifetime Qt Champion @Helson last edited by

            @Helson You cannot just read the response right after sending the post. The communication over network takes time. You have to wait until the response arrives and then read it. QNetworkAccessManager::post() just sends the post it does not wait for the response.

            https://forum.qt.io/topic/113070/qt-code-of-conduct

            H 1 Reply Last reply Reply Quote 1
            • H
              Helson @jsulm last edited by Helson

              @jsulm
              It's clear for me now.
              Can you show me a example of a response outside of a slot?
              I need it to check the response and decide the way the code
              If I use slot, I need put all my logic inside of a slot.

              Thank you and sorry for my bad english.

              --
              Something like

              reply = mpNetworkMgrSend->post(request, datatoSend);

              if(reply = "true"){
              ...
              } else{
              ...
              }

              1 Reply Last reply Reply Quote 0
              • jsulm
                jsulm Lifetime Qt Champion last edited by

                You get a pointer to a QNetworkReply instance.
                Then you connect its readyRead() signal (or finished()) to a slot where you read the response data.
                Where is no need to do busy waiting for the reply.
                This is from Qt documentation (replace get() with post()):

                QNetworkRequest request;
                request.setUrl(QUrl("http://qt-project.org"));
                request.setRawHeader("User-Agent", "MyOwnBrowser 1.0");
                
                QNetworkReply *reply = manager->get(request);
                connect(reply, SIGNAL(readyRead()), this, SLOT(slotReadyRead()));
                connect(reply, SIGNAL(error(QNetworkReply::NetworkError)),
                        this, SLOT(slotError(QNetworkReply::NetworkError)));
                

                https://forum.qt.io/topic/113070/qt-code-of-conduct

                1 Reply Last reply Reply Quote 0
                • jsulm
                  jsulm Lifetime Qt Champion last edited by

                  If you want to wait for the response for some reason you can call the QNetworkReply::isFinished() periodically. But take care to not to block the event loop, else you most probably will have an endless loop.

                  https://forum.qt.io/topic/113070/qt-code-of-conduct

                  1 Reply Last reply Reply Quote 0
                  • H
                    Helson last edited by Helson

                    I'm trying but without success.

                    QNetworkReply *reply = manager->get(request);
                    connect(reply, SIGNAL(readyRead()), this, SLOT(slotReadyRead()));
                    connect(reply, SIGNAL(error(QNetworkReply::NetworkError)), this, SLOT(slotError(QNetworkReply::NetworkError)))
                     
                    while(!reply->isFinished()){                         
                        QString dataReply = (QString) reply->readAll();	
                    }
                    

                    I can not get the reply out of the slot...

                    1 Reply Last reply Reply Quote 0
                    • speqtr
                      speqtr last edited by

                      Try this code:

                      QNetworkReply *reply = manager->get(request);
                      
                      QEventLoop loop;
                      connect(reply, SIGNAL(finished()), &loop, SLOT(quit()));
                      loop.exec();
                      
                      QByteArray data = reply->readAll();
                      QString dataReply(data);
                      

                      It should do the job.

                      H 1 Reply Last reply Reply Quote 3
                      • H
                        Helson @speqtr last edited by Helson

                        @speqtr

                        Hey!!
                        It's works like a charm!
                        Have a great day!
                        Thank you so much!!!

                        Problem solved finally!!!

                        1 Reply Last reply Reply Quote 0
                        • speqtr
                          speqtr last edited by

                          You are welcome!
                          Have a nice day :)

                          HeerokNewbie 1 Reply Last reply Reply Quote 3
                          • HeerokNewbie
                            HeerokNewbie @speqtr last edited by

                            This post is deleted!
                            1 Reply Last reply Reply Quote 0
                            • First post
                              Last post