GSOAP: Proxy Auto Configure URL

How do I configure the proxy class created by GSOAP to use the URL of the automatic HTTP proxy configuration?

I know that I can configure the HTTP proxy address as follows:

AnyWebServicePortBindingProxy  _client;
_client.proxy_host = "192.168.0.x";  // A valid network address.
_client.proxy_port = 8080;
_client.proxy_userid = "user";
_client.proxy_passwd = "password";

But what if I want to point to an HTTP proxy script as "http: //my_proxy/proxy_script.cfg"?

Thank!

+3
source share
1 answer

The script proxy configuration is actually javascript code that returns the proxy server address based on its needs. This was intended to work with web browsers that implement the necessary logic to analyze the response FindProxyForURL.

, GSOAP . (, SOAP-), - gSOAP .

+3

All Articles