Back to product page
- Introduction
- License agreement
- Getting Started
- Objects
- Enumerations
- wodHttpDLX
- Methods
- Properties
- Authentication
- AutoRedirect
- BindIP
- Blocking
- CertErrors
- Certificate
- Compression
- Hostname
- HTTPversion
- IgnoreCertErrors
- KeepAlive
- LastError
- LastErrorText
- LocalCertBag
- Login
- MyHostname
- MyIP
- Notification
- Password
- Port
- ProxyAuthentication
- ProxyHostname
- ProxyLogin
- ProxyPassword
- ProxyPort
- ProxyType
- Request
- Response
- Secure
- Socket
- SSLCipherList
- State
- Timeout
- URL
- UseIPv6
- Version
- Events
- wodHttpNotify
- HttpCookie
- HttpCookies
- HttpHeader
- HttpHeaders
- HttpRequest
- HttpRequestFormPost
- HttpRequestFormUpload
- HttpResponse
- How to get support?
- Technical information
- Fast notifications interface
- Error list
ProxyHostname property
Hostname of remote proxy.
Type
A String valueSyntax
- Basic
object.ProxyHostname [= value]
The ProxyHostname(object,value) syntax has these parts:
The ProxyHostname(object,value) syntax has these parts:
object | An expression evaluating to an object of type wodHttpDLX. |
value | A String value. |
Remarks
When the wodHttpDLX client is unable to establish a direct connection (not connected directly to the internet, for example), the proxy option can be used. There are several types of proxies supported by the wodHttpDLX control. When any proxy is used, this property specifies the hostname for the remote proxy. Be careful, though. This property is not same as the Hostname property. When a connection to a proxy is established, wodHttpDLX will issue a request to the proxy to open a remote connection to the hostname specified by the ProxyHostname property. For example,wodHttp1.ProxyType = ProxyWEBStandard
wodHttp1.ProxyHostname = "proxy.server.com"
wodHttp1.ProxyPort = 80
wodHttp1.Get "http://www.weonlydo.com"
would get default page from WeOnlyDo's WEB server, but through the proxy 'proxy.server.com'.