<Proxy>
<UseProxy value="no"/>
<Address>proxyAddress</Address>
<Port value="8080"/>
<UserName>Joe</UserName>
<Password>Joe's Password</Password>
<UseHTTP10 value="no"/>
</Proxy>
| Tag | Type | Default | Description |
|---|---|---|---|
<UseProxy>
| value | no | Whether to use a proxy server |
<Address>
| string | n/a | The proxy server address |
<Port>
| value | 8080 | The proxy server port |
<UserName>
| string | n/a | The user name to use for proxy authentication |
<Password>
| string | n/a | The password to use for proxy authentication |
<UseHTTP10>
| value | no | Whether to use HTTP/1.0 |
no
to not use a proxy server. Set the attribute to
yes to use the proxy server whose
address and port are specified in the Address
and Port elements, respectively.<UseProxy value="no"/>This example specifies that a proxy should be used.
<UseProxy value="yes"/>
yes in order to utilize
the proxy server. The address can be an IP address (i.e.,
192.168.100.110) or the human-readable name (i.e., proxy.mycompany.com)
of the proxy server. Make sure that you enter the address of the
server only and do not enter a web address such as
http://www.public.proxy.com/proxy.<Address>192.168.100.110</Address>This example specifies the human-readable name of the proxy server.
<Address>proxy.mycompany.com</Address>
yes in order to utilize
the proxy server.<Port value="3128"/>This example specifies that the proxy server port is 8080.
<Port value="8080"/>
<UserName>JohnDoe</UserName> <Password>LeMoNtReE</Password>
yes
to use HTTP/1.0 to communicate with the proxy. Set the value
to no to use the default of HTTP/1.1.<UseHTTP10 value="yes"/>This example specifies that the default of HTTP/1.1 should be used.
<UseHTTP10 value="no"/>