Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • Users
  • Groups
  • Search
  • Get Qt Extensions
  • Unsolved
Collapse
Brand Logo
  1. Home
  2. Qt Development
  3. Qt WebKit
  4. Proxy client accesing to web

Proxy client accesing to web

Scheduled Pinned Locked Moved Qt WebKit
2 Posts 2 Posters 1.9k 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.
  • L Offline
    L Offline
    luisaguirre4984
    wrote on last edited by
    #1

    Hello, I am tring to connect at the web through at proxy, and I could not, the code is here:

    QNetworkProxy pr;
    QNetworkAccessManager acc;
    pr.setUser("laguirre@ivisa.com.ar");
    pr.setPassword("luis");
    pr.setHostName("baisa.ivisa.com.ar");
    pr.setPort(8080);
    pr.setType(QNetworkProxy::ProxyType::HttpProxy);
    QNetworkAccessManager acc;
    acc.setProxy(pr);
    QnetworkReply reply=acc.get(QNetworkRequest("http://googel.com.ar));
    connect(reply, SIGNAL(finished()),this, SLOT(httpFinished()));
    connect(reply, SIGNAL(readyRead()),this, SLOT(httpReadyRead()));
    connect(reply,SIGNAL(downloadProgress(qint64,qint64)),
    this,SLOT(updateDataReadProgress(qint64,qint64)));

    the problem is that the program leave asleep when call yo acc.get, what am I doing bad?
    Help please.
    regards and thanks, Luis.

    1 Reply Last reply
    0
    • EddyE Offline
      EddyE Offline
      Eddy
      wrote on last edited by
      #2

      Please don't double post. You already asked "this":https://developer.qt.nokia.com/forums/viewthread/11472/.
      Thread closed

      Qt Certified Specialist
      www.edalsolutions.be

      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