Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • Users
  • Groups
  • Search
  • Get Qt Extensions
  • Unsolved
Collapse
Brand Logo
  1. Home
  2. Qt Development
  3. General and Desktop
  4. Proxy

Proxy

Scheduled Pinned Locked Moved General and Desktop
4 Posts 2 Posters 2.8k 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 web throug at proxy, here is my code
    @
    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)));
    @
    And the problem is that the program left asleep when call to acc.get , what I am doing bad??
    help please,
    regards and thanks lui.

    [edit : please use @ tags for your code, Eddy]

    1 Reply Last reply
    0
    • G Offline
      G Offline
      goetz
      wrote on last edited by
      #2

      Can you define "left asleep"?
      Please connect to the error() signal of the reply and check whether you get any errors.

      And you did forget to call

      @
      QNetworkProxy::setApplicationProxy(proxy);
      @

      before calling the get.

      http://www.catb.org/~esr/faqs/smart-questions.html

      1 Reply Last reply
      0
      • L Offline
        L Offline
        luisaguirre4984
        wrote on last edited by
        #3

        left asleep, I am sorry I wanted say you leave asleep, the program do not out of this line. Thanks you. I will try with SetApplicationProxy and connect the erro signal.
        Regards luis.

        1 Reply Last reply
        0
        • L Offline
          L Offline
          luisaguirre4984
          wrote on last edited by
          #4

          I Connected the signal error and made setApplicationProxy but the program result do not change, it keep in the line get infinitely.
          regards luis.

          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