Re: Set a proxy for QWebView
Re: Set a proxy for QWebView
OK, it works,
Thank you.
Here the code I used:
Code:
proxy.setHostName("proxy.example.com");
proxy.setPort(1080);
// proxy.setUser("username");
// proxy.setPassword("password");
Andrea
Added after 6 minutes:
Hi wysota,
thank again for your help.
Now I've got a more complicate challenge.
In my company there's a proxy for the web navigation. For internet sites I must use the proxy, but for the internal web servers (like http://192.168.13.49) I must not use the proxy.
In firefox and other commercial browsers, I can del with the proxy exceptions. In the connection settings panel I can set a proxy address and some exceptional addresses for which the proxy shall not be used.
Do you think is possible to do such thing with my Qt browser?
Thank you again from Italy.
Re: Set a proxy for QWebView