Hi

I am having problem of getting it right. I receive data corrupt message from the server by random. And I think it happens because the load balancing ( haproxy).
I set cookies to QNetworkAccessManager and some reason it does not work when it connects to the other server.

Qt Code:
  1. QNetworkAccessManager* manager = new CachingNetworkAccessManager(parent);
  2. QNetworkCookieJar* cookies = getCookies();
  3. manager->setCookieJar(cookies);
  4. cookies->setParent(0);
To copy to clipboard, switch view to plain text mode 

A WebKit is used to display an html. How other browsers handle such a thing of setting cookies ?

Thanks for looking