Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • Users
  • Groups
  • Search
  • Get Qt Extensions
  • Unsolved
Collapse
Brand Logo
  1. Home
  2. Qt Development
  3. QML and Qt Quick
  4. Extending networking/socket programming functionality of a qml project
Forum Updated to NodeBB v4.3 + New Features

Extending networking/socket programming functionality of a qml project

Scheduled Pinned Locked Moved Unsolved QML and Qt Quick
92 Posts 5 Posters 19.1k Views 2 Watching
  • 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.
  • Q qcoderpro
    17 May 2022, 07:40

    @SGaist

    I'm not sure how to make an HTTP request using QNetworkAccessManager by a single string. I tired this but neither of the qInfo() prints anything. The program also terminates at once! :|

     QNetworkAccessManager* manager = new QNetworkAccessManager(this);
        const QNetworkRequest request;
        const QByteArray data {"https://coderdevqt@gmail.com:passwordexample@dynupdate.no-ip.com/nic/update?hostname=coderdev.ddns.net"};
        manager->put(request,data);
    
        connect(manager, &QNetworkAccessManager::finished, [] {
            QNetworkReply* reply = nullptr;
            if(reply->error())
                qInfo() << "ERROR!: " + reply->errorString();
            else
                qInfo() << "Reply got back with no error!";
    
            reply->deleteLater();
        });
    
    J Offline
    J Offline
    JonB
    wrote on 17 May 2022, 09:36 last edited by
    #49

    @qcoderpro
    I would also suggest you do the connect(manager, ...) before manager->put() not afterwards.

    1 Reply Last reply
    0
    • Q Offline
      Q Offline
      qcoderpro
      wrote on 17 May 2022, 20:58 last edited by qcoderpro
      #50

      @SGaist
      What do you mean by copying part of the code I wrote above? I didn't get it. Do you mean those three lines of code are sufficient to make an Http request? Then how about the string!? :|

      @JonB
      You mean this way?

      QNetworkAccessManager* manager = new QNetworkAccessManager(this);
      const QNetworkRequest request;
      const QByteArray data {"https://coderdevqt@gmail.com:passwordexample@dynupdate.no-ip.com/nic/update?hostname=coderdev.ddns.net"};
      
      connect(manager, &QNetworkAccessManager::finished, [] {
              QNetworkReply* reply = nullptr;
              if(reply->error())
                  qInfo() << "ERROR!: " + reply->errorString();
              else
                  qInfo() << "Reply got back with no error!";
      
              reply->deleteLater();
          });
      
      manager->put(request,data);
      

      I'm confused! :(
      Furthermore the put function uploads the contents of data to the destination request, while both my data and destination are packed into that data!

      J 1 Reply Last reply 17 May 2022, 22:01
      0
      • Q qcoderpro
        17 May 2022, 20:58

        @SGaist
        What do you mean by copying part of the code I wrote above? I didn't get it. Do you mean those three lines of code are sufficient to make an Http request? Then how about the string!? :|

        @JonB
        You mean this way?

        QNetworkAccessManager* manager = new QNetworkAccessManager(this);
        const QNetworkRequest request;
        const QByteArray data {"https://coderdevqt@gmail.com:passwordexample@dynupdate.no-ip.com/nic/update?hostname=coderdev.ddns.net"};
        
        connect(manager, &QNetworkAccessManager::finished, [] {
                QNetworkReply* reply = nullptr;
                if(reply->error())
                    qInfo() << "ERROR!: " + reply->errorString();
                else
                    qInfo() << "Reply got back with no error!";
        
                reply->deleteLater();
            });
        
        manager->put(request,data);
        

        I'm confused! :(
        Furthermore the put function uploads the contents of data to the destination request, while both my data and destination are packed into that data!

        J Offline
        J Offline
        JonB
        wrote on 17 May 2022, 22:01 last edited by
        #51

        @qcoderpro said in Extending networking/socket programming functionality of a qml project:

        @JonB
        You mean this way?

        Yes, I think it's preferable to attach the slot to manager's signal before you call manager->put(). Though @VRonin pointed out it doesn't actually matter in this case, but it's good style anyway.

        1 Reply Last reply
        0
        • V Offline
          V Offline
          VRonin
          wrote on 17 May 2022, 23:20 last edited by VRonin
          #52

          Since I've been summoned... how is this not a segfault?

          QNetworkReply* reply = nullptr;
          if(reply->error())
          

          What you should do is connect the QNetworkReply, not the QNetworkAccessManager.

          // the initialisation of these 2 looks wrong but I'll ignore it for now
          QNetworkAccessManager* manager = new QNetworkAccessManager(this);
          const QNetworkRequest request;
          const QByteArray data {"https://coderdevqt@gmail.com:passwordexample@dynupdate.no-ip.com/nic/update?hostname=coderdev.ddns.net"};
          QNetworkReply* reply = manager->put(request,data);
          connect(reply,&QNetworkReply::finished,this,[reply](){
              if(reply->error())
                  qInfo() << "ERROR!: " + reply->errorString();
              else
                  qInfo() << "Reply got back with no error!";
          });
          connect(reply,&QNetworkReply::finished,reply,&QNetworkReply::deleteLater);
          

          "La mort n'est rien, mais vivre vaincu et sans gloire, c'est mourir tous les jours"
          ~Napoleon Bonaparte

          On a crusade to banish setIndexWidget() from the holy land of Qt

          Q 1 Reply Last reply 18 May 2022, 06:09
          2
          • V VRonin
            17 May 2022, 23:20

            Since I've been summoned... how is this not a segfault?

            QNetworkReply* reply = nullptr;
            if(reply->error())
            

            What you should do is connect the QNetworkReply, not the QNetworkAccessManager.

            // the initialisation of these 2 looks wrong but I'll ignore it for now
            QNetworkAccessManager* manager = new QNetworkAccessManager(this);
            const QNetworkRequest request;
            const QByteArray data {"https://coderdevqt@gmail.com:passwordexample@dynupdate.no-ip.com/nic/update?hostname=coderdev.ddns.net"};
            QNetworkReply* reply = manager->put(request,data);
            connect(reply,&QNetworkReply::finished,this,[reply](){
                if(reply->error())
                    qInfo() << "ERROR!: " + reply->errorString();
                else
                    qInfo() << "Reply got back with no error!";
            });
            connect(reply,&QNetworkReply::finished,reply,&QNetworkReply::deleteLater);
            
            Q Offline
            Q Offline
            qcoderpro
            wrote on 18 May 2022, 06:09 last edited by
            #53

            @VRonin

            That's better, thanks. The project doesn't itself terminate and works but I get this error!
            fdgdfg.PNG
            I've used the exact same string as yours, of course with my real info.

            1 Reply Last reply
            0
            • V Offline
              V Offline
              VRonin
              wrote on 18 May 2022, 08:47 last edited by
              #54

              @qcoderpro said in Extending networking/socket programming functionality of a qml project:

              I've used the exact same string as yours, of course with my real info.

              Yeah, I expected something like that, hence my comment:

              the initialisation of these 2 looks wrong but I'll ignore it for now

              Your request has no url...
              I have no idea how the server you are trying to connect to works so it's hard to tell you exactly what to do. Did you manage to do what you want with the server with another tool (like curl, or a browser-based rest client)?

              "La mort n'est rien, mais vivre vaincu et sans gloire, c'est mourir tous les jours"
              ~Napoleon Bonaparte

              On a crusade to banish setIndexWidget() from the holy land of Qt

              1 Reply Last reply
              0
              • S Offline
                S Offline
                SGaist
                Lifetime Qt Champion
                wrote on 18 May 2022, 09:00 last edited by
                #55

                @qcoderpro said in Extending networking/socket programming functionality of a qml project:

                const QByteArray data {"https://coderdevqt@gmail.com:passwordexample@dynupdate.no-ip.com/nic/update?hostname=coderdev.ddns.net"};

                This is not the payload, it's the full query. The API has no payload.

                Please read again the documentation.

                Interested in AI ? www.idiap.ch
                Please read the Qt Code of Conduct - https://forum.qt.io/topic/113070/qt-code-of-conduct

                Q 1 Reply Last reply 18 May 2022, 11:04
                1
                • S SGaist
                  18 May 2022, 09:00

                  @qcoderpro said in Extending networking/socket programming functionality of a qml project:

                  const QByteArray data {"https://coderdevqt@gmail.com:passwordexample@dynupdate.no-ip.com/nic/update?hostname=coderdev.ddns.net"};

                  This is not the payload, it's the full query. The API has no payload.

                  Please read again the documentation.

                  Q Offline
                  Q Offline
                  qcoderpro
                  wrote on 18 May 2022, 11:04 last edited by qcoderpro
                  #56

                  @SGaist @VRonin
                  I'm rather confused.
                  Do you mean to split the string into two parts, one for data, and the other for request like this?

                  const QByteArray data {"https://coderdevqt@gmail.com:passwordexample"};
                  const QNetworkRequest request;
                  request.rawHeader("@dynupdate.no-ip.com/nic/update?hostname=coderdev.ddns.net");
                  
                  QNetworkAccessManager* manager = new QNetworkAccessManager(this);
                  QNetworkReply* reply = manager->put(request,data);
                  
                  connect(reply,&QNetworkReply::finished,this,[reply](){
                      if(reply->error())
                          qInfo() << "ERROR!: " + reply->errorString();
                      else
                          qInfo() << "Reply got back with no error!";
                  });
                  connect(reply,&QNetworkReply::finished,reply,&QNetworkReply::deleteLater);
                  

                  The result shows the same error! :|

                  1 Reply Last reply
                  0
                  • S Offline
                    S Offline
                    SGaist
                    Lifetime Qt Champion
                    wrote on 18 May 2022, 12:03 last edited by
                    #57

                    Here is an example that shows how to do it in a simple fashion with the various elements of the query separated (replace what is found between <> with adequate values):

                    QByteArray auth = "<username>:<password>";
                    QByteArray authHeaderData = "Basic " + auth.toBase64();
                    
                    QUrl requestUrl("https://dynupdate.no-ip.com/nic/update");
                    requestUrl.setQuery("hostname=<your-host-name>&myip=<your-ip-address>");
                    
                    QNetworkRequest request(requestUrl);
                    request.setRawHeader("Authorization", authHeaderData);
                    
                    QNetworkReply * reply = qnam.get(request);
                    

                    Interested in AI ? www.idiap.ch
                    Please read the Qt Code of Conduct - https://forum.qt.io/topic/113070/qt-code-of-conduct

                    Q 1 Reply Last reply 18 May 2022, 12:18
                    1
                    • S SGaist
                      18 May 2022, 12:03

                      Here is an example that shows how to do it in a simple fashion with the various elements of the query separated (replace what is found between <> with adequate values):

                      QByteArray auth = "<username>:<password>";
                      QByteArray authHeaderData = "Basic " + auth.toBase64();
                      
                      QUrl requestUrl("https://dynupdate.no-ip.com/nic/update");
                      requestUrl.setQuery("hostname=<your-host-name>&myip=<your-ip-address>");
                      
                      QNetworkRequest request(requestUrl);
                      request.setRawHeader("Authorization", authHeaderData);
                      
                      QNetworkReply * reply = qnam.get(request);
                      
                      Q Offline
                      Q Offline
                      qcoderpro
                      wrote on 18 May 2022, 12:18 last edited by qcoderpro
                      #58

                      @SGaist
                      The part myip is optional because the server's IP address connecting to their system will be used. So I use the version below, if you agree:

                          QByteArray auth = "myEmail:myPass";
                          QByteArray authHeaderData = "Basic " + auth.toBase64();
                          
                          QUrl requestUrl("https://dynupdate.no-ip.com/nic/update");
                          requestUrl.setQuery("hostname=coderdev.ddns.net");
                          
                          QNetworkRequest request(requestUrl);
                          request.setRawHeader("Authorization", authHeaderData);
                          
                          QNetworkReply * reply = qnam.get(request);
                      

                      Two more questions:
                      1- We've dropped the @ sign existing in the first string. Doesn't matter?
                      2- What's qnam, please?

                      1 Reply Last reply
                      0
                      • S Offline
                        S Offline
                        SGaist
                        Lifetime Qt Champion
                        wrote on 18 May 2022, 19:23 last edited by
                        #59
                        1. Sure it does matter, that's the authentication part. Re-read the code.
                        2. a QNetwornAccessManager object.

                        Interested in AI ? www.idiap.ch
                        Please read the Qt Code of Conduct - https://forum.qt.io/topic/113070/qt-code-of-conduct

                        Q 1 Reply Last reply 18 May 2022, 19:51
                        1
                        • S SGaist
                          18 May 2022, 19:23
                          1. Sure it does matter, that's the authentication part. Re-read the code.
                          2. a QNetwornAccessManager object.
                          Q Offline
                          Q Offline
                          qcoderpro
                          wrote on 18 May 2022, 19:51 last edited by
                          #60

                          @SGaist
                          I meant the @ in the string:
                          "...//coderdevqt@gmail.com:passwordexample@dynupdate.no-ip.com/nic/update?hostname=coderdev.ddns.net"

                          The message "Reply got back with no error!" is printed for this:

                          QByteArray auth = "myEmail:myPass";
                          QByteArray authHeaderData = "Basic " + auth.toBase64();
                          
                          QUrl requestUrl("https://dynupdate.no-ip.com/nic/update");
                          requestUrl.setQuery("hostname=coderdev.ddns.net");
                          
                          QNetworkRequest request(requestUrl);
                          request.setRawHeader("Authorization", authHeaderData);
                          
                          QNetworkAccessManager* qnam = new QNetworkAccessManager(this);
                          QNetworkReply * reply = qnam->get(request);
                           if(reply->error())
                              qInfo() << "ERROR!: " + reply->errorString();
                          else
                              qInfo() << "Reply got back with no error!";
                          

                          So probably the record has been updated successfully.

                          For the client app I used the code below but the messages don't appear to be exchanged between the apps!

                             QHostInfo info = QHostInfo::fromName("coderdev.ddns.net");
                            //  If updating over HTTPS, our system listens on Port 443
                              sendAddress(info.addresses().front(), 443);
                          
                          // ...
                          void Client::sendAddress(QHostAddress ip, unsigned int port)
                          {
                              tcpSocket->abort();
                              tcpSocket->connectToHost(ip, port);
                          }
                          
                          
                          1 Reply Last reply
                          0
                          • S Offline
                            S Offline
                            SGaist
                            Lifetime Qt Champion
                            wrote on 18 May 2022, 20:00 last edited by
                            #61

                            I know that you are talking about the "@". As I wrote, it's about authentication. There are several ways to do it.

                            As for the client side, did you connect the error signals of your socket ?
                            Does your server really answer on port 443 ?

                            Interested in AI ? www.idiap.ch
                            Please read the Qt Code of Conduct - https://forum.qt.io/topic/113070/qt-code-of-conduct

                            Q 1 Reply Last reply 18 May 2022, 20:45
                            1
                            • S SGaist
                              18 May 2022, 20:00

                              I know that you are talking about the "@". As I wrote, it's about authentication. There are several ways to do it.

                              As for the client side, did you connect the error signals of your socket ?
                              Does your server really answer on port 443 ?

                              Q Offline
                              Q Offline
                              qcoderpro
                              wrote on 18 May 2022, 20:45 last edited by qcoderpro
                              #62

                              @SGaist

                              I get this message for this error:

                               case QAbstractSocket::ConnectionRefusedError:
                                      qInfo() << "The connection was refused by the peer. "
                                                 "Make sure the server is running, "
                                                 "and check that the host name and port "
                                                 "settings are correct.";
                              

                              As for the port number, they say in Sending an Update in their website: If updating over HTTPS, our system listens on Port 443 It is not necessary to open any incoming ports for updating.

                              Of course both apps are running on the same machine.

                              1 Reply Last reply
                              0
                              • Q Offline
                                Q Offline
                                qcoderpro
                                wrote on 18 May 2022, 21:16 last edited by qcoderpro
                                #63

                                Sorry, there was a problem with my connection. Now that I runt the two apps (on my Windows machine), they both run successfully (with no errors) but messages won't be sent/received. That is, whatever I write and click on the Send button, nothing appears on the other side! :(

                                When sending messages on the server app, the error below appears on the Application Output window:
                                "QIODevice::write (QTcpSocket): device not open"

                                1 Reply Last reply
                                0
                                • S Offline
                                  S Offline
                                  SGaist
                                  Lifetime Qt Champion
                                  wrote on 18 May 2022, 21:46 last edited by
                                  #64

                                  You are mixing noip API server and yours. They are not the same and the port you use for your application is unrelated to the one you use to update your account.

                                  As for your socket issue, I do not see any error checking done in your code so you do not even know whether your connection was successful.

                                  Interested in AI ? www.idiap.ch
                                  Please read the Qt Code of Conduct - https://forum.qt.io/topic/113070/qt-code-of-conduct

                                  Q 1 Reply Last reply 18 May 2022, 22:02
                                  0
                                  • S SGaist
                                    18 May 2022, 21:46

                                    You are mixing noip API server and yours. They are not the same and the port you use for your application is unrelated to the one you use to update your account.

                                    As for your socket issue, I do not see any error checking done in your code so you do not even know whether your connection was successful.

                                    Q Offline
                                    Q Offline
                                    qcoderpro
                                    wrote on 18 May 2022, 22:02 last edited by
                                    #65

                                    @SGaist

                                    You are mixing noip API server and yours. They are not the same and the port you use for your application is unrelated to the one you use to update your account.

                                    Sounds reasonable. So what port number should I use for my client app to be able to connect to the server app, please? The sever sends its IP by updating the record, but how about a port? How to find a port for the connection?

                                    jsulmJ 1 Reply Last reply 19 May 2022, 05:42
                                    0
                                    • Q qcoderpro
                                      18 May 2022, 22:02

                                      @SGaist

                                      You are mixing noip API server and yours. They are not the same and the port you use for your application is unrelated to the one you use to update your account.

                                      Sounds reasonable. So what port number should I use for my client app to be able to connect to the server app, please? The sever sends its IP by updating the record, but how about a port? How to find a port for the connection?

                                      jsulmJ Offline
                                      jsulmJ Offline
                                      jsulm
                                      Lifetime Qt Champion
                                      wrote on 19 May 2022, 05:42 last edited by
                                      #66

                                      @qcoderpro said in Extending networking/socket programming functionality of a qml project:

                                      So what port number should I use for my client app to be able to connect to the server app, please?

                                      The port your server is listening for connections.
                                      It is your server, so you should know what server you use.

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

                                      Q 1 Reply Last reply 19 May 2022, 13:33
                                      0
                                      • jsulmJ jsulm
                                        19 May 2022, 05:42

                                        @qcoderpro said in Extending networking/socket programming functionality of a qml project:

                                        So what port number should I use for my client app to be able to connect to the server app, please?

                                        The port your server is listening for connections.
                                        It is your server, so you should know what server you use.

                                        Q Offline
                                        Q Offline
                                        qcoderpro
                                        wrote on 19 May 2022, 13:33 last edited by
                                        #67

                                        @jsulm
                                        The server may be run by someone in another country, so how the client should know the port number!? :|
                                        Furthermore, you said: port number can be fixed (like 8080 for HTTP).

                                        For the connection both IP and port are needed, As far as I'm concerned. No-ip works out the problem with IP. But how about the port number? :(

                                        jsulmJ 1 Reply Last reply 19 May 2022, 13:57
                                        0
                                        • Q qcoderpro
                                          19 May 2022, 13:33

                                          @jsulm
                                          The server may be run by someone in another country, so how the client should know the port number!? :|
                                          Furthermore, you said: port number can be fixed (like 8080 for HTTP).

                                          For the connection both IP and port are needed, As far as I'm concerned. No-ip works out the problem with IP. But how about the port number? :(

                                          jsulmJ Offline
                                          jsulmJ Offline
                                          jsulm
                                          Lifetime Qt Champion
                                          wrote on 19 May 2022, 13:57 last edited by
                                          #68

                                          @qcoderpro Question: do you have to use a fix port number or not? Port can be fixed like it is for many protocols.

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

                                          Q 1 Reply Last reply 19 May 2022, 15:45
                                          0

                                          58/92

                                          18 May 2022, 12:18

                                          • Login

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