Specifies proxy settings.
Path
HTTPProxy
Attributes
This element has no attributes.
Nested elements
This element is a container for the following nested elements:
url
is the address of the proxy. This is a string value.The value of this parameter can be an IPv4 address, an IPv6 address, or a domain name. Do not specify a protocol (http://
or https://
) in this parameter.
If UseHTTPProxy
is set to 1, this parameter is mandatory.
port
is the port of the proxy. This value must be an unsigned integer and cannot be 0
.The default value is 3128
.
user
is the user name for the proxy authentication. This is a string value.If UseHTTPProxy
is set to 1
, this parameter is mandatory.
pass
is the password for the proxy authentication. This is a string value.If UseHTTPProxy
is set to 1
, this parameter is mandatory.
Example
The following is an example of an HTTPProxy element.
<HTTPProxy> <url>myproxy.mycompany.com</url> <port>3128</port> <user>proxyuser</user> <pass>proxypass</pass> </HTTPProxy> |