Live Helper Chat support forum.. Forum is locked. New place for questions - Github Discussions
You are not logged in.
Pages: 1
Hello,
How can i set proxy in your Qt application.
Can you guide me in right path.
Thanks
Offline
Well
Well a the moment i'm using plain qnetwork plugin. I'm afraid you will have to findout yourself how to setup proxy and recompile application.
As for alternative perhaps you can try to set proxy in internet explorer perhaps it will use same settings, but really no idea
Offline
i have tried this but not working
QNetworkProxy proxy;
proxy.setType(QNetworkProxy::HttpProxy);
proxy.setHostName("proxy.example.com");
proxy.setPort(1080);
proxy.setUser("username");
proxy.setPassword("password");
QNetworkProxy::setApplicationProxy(proxy);
Offline
Pages: 1