Results 1 to 5 of 5

Thread: QNetworkAccessManager - finished signal (when emitted)

  1. #1

    Question QNetworkAccessManager - finished signal (when emitted)

    I have a REST-service which i access using an HTTP POST. Using soap ui, i get timings like 30 ms. When using QNetworkaccessmanager (connecting the finished signal, direct connection) i get 230 ms.

    I used wireshark to check what is going on...

    What i see is that both ways are sending the same messages:
    •TCP SYN (time: 15.9528600)
    •TCP SYN, ACK (time: 15.9536980)
    •ACK (time: 15.9537440)
    •HTTP POST (time: 15.9549770)
    •HTTP REPLY (time: 15.9998710)
    •TCP ACK (time: 16.1998570) --> the time difference between the last HTTP reply and the ack is +/- 200 ms...

    The question is, is the finished signal emitted after the TCP ack in QNetworkAccessManager and can i force the signal to be emitted faster? Is it normal it waits to ack the reply before sending the finished signal? If so, is there another signal i can use to get the reply sooner?

    Or am I doing it wrong?

    Part of code:
    _am = new QNetworkAccessManager();
    connect( _am, SIGNAL( finished( QNetworkReply* ) ), this, SLOT( _requestFinished( QNetworkReply* ) ), Qt:irectConnection );
    ...
    QNetworkRequest request( _requestData.url );
    request.setHeader( QNetworkRequest::ContentTypeHeader,"application/json" );
    _elapsed.restart();
    _reply = _am->post( request, _requestData.data );


    I time using QElapsedTimer just before doing the post and within the _requestFinished slot i take the elapsed time and output it.
    I always see 200+ ms...

    Any help? Or ideas?

    Thanks in advance.

  2. #2
    Join Date
    Jan 2006
    Location
    Graz, Austria
    Posts
    8,416
    Thanks
    37
    Thanked 1,544 Times in 1,494 Posts
    Qt products
    Qt3 Qt4 Qt5
    Platforms
    Unix/X11 Windows

    Default Re: QNetworkAccessManager - finished signal (when emitted)

    Quote Originally Posted by RavensAngel View Post
    The question is, is the finished signal emitted after the TCP ack in QNetworkAccessManager and can i force the signal to be emitted faster?
    My guess is that the socket is only closed after the FIN ACK and that is used to determine that there is really nothing else to do anymore.
    I.e. using the socket "finished" rather than any HTTP protocol "end".

    But you could look into the code to check.

    Quote Originally Posted by RavensAngel View Post
    If so, is there another signal i can use to get the reply sooner?
    Well, you could process the data as it arrives.

    Cheers,
    _

  3. #3

    Default Re: QNetworkAccessManager - finished signal (when emitted)

    But i timed the readyRead signal on the _reply, which i assume would be needed in case of "process as arrived". But the timings remain ... the readyRead is called 200+ ms and the finished is only emitted 1 ms later. (timed with the same elapsed timer).

    So it seems the implementation of QNetworkReply is slow ... as when implemented using c# for example, doing the same, the timings relfect the ones with soapui...
    I don't know whether i can boost this request-reply mechanism... it's weird.

  4. #4

    Default Re: QNetworkAccessManager - finished signal (when emitted)

    I found one if the issues. I seems that the HTTP POST is put in 2 TCP packages.
    The Nagle algorithm seems to be causing certain delay because of this. I disabled the Nagle algorithm on the server side, which already gave me some performance boost.

    But there is still a difference on the latency between the C# client and the Qt client.
    In wireshark you can see that C# implementation is sending an extra continue message ... maybe it's related to that. I don't know yet...

  5. #5
    Join Date
    Mar 2009
    Location
    Brisbane, Australia
    Posts
    7,729
    Thanks
    13
    Thanked 1,610 Times in 1,537 Posts
    Qt products
    Qt4 Qt5
    Platforms
    Unix/X11 Windows
    Wiki edits
    17

    Default Re: QNetworkAccessManager - finished signal (when emitted)

    What is certain is that the QNetworkAccessManager will not issue the finished() until some time after the respective QNetworkReply does, and that readyRead() may be issued multiple times before that.

Similar Threads

  1. QNetworkAccessManager no finished() signal emitted
    By realperson in forum Qt Programming
    Replies: 4
    Last Post: 18th January 2018, 08:42
  2. Replies: 8
    Last Post: 12th January 2015, 22:08
  3. Replies: 7
    Last Post: 14th November 2014, 16:29
  4. Replies: 7
    Last Post: 7th August 2014, 06:43
  5. QNetworkAccessManager does not signal finished
    By lukas.zachy in forum Newbie
    Replies: 5
    Last Post: 26th January 2011, 09:05

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
Digia, Qt and their respective logos are trademarks of Digia Plc in Finland and/or other countries worldwide.