Back to product page
- Introduction
- Overview
- License Agrement
- Getting Started
- Objects
- Enumerations
- wodSSH
- Methods
- Properties
- AllocatePty
- Authentication
- Blocking
- ClientName
- Columns
- Command
- Compression
- DataOut
- DataReady
- Encoding
- Encryption
- EncryptionList
- ErrorText
- ExitSignal
- ExitStatus
- FIPS
- ForwardHost
- ForwardPort
- HMacList
- Hostname
- KeepAlives
- KeyExchangeList
- KeyForward
- KeySignatureList
- LastError
- Login
- MyHostname
- MyIP
- Notification
- Password
- Port
- PrivateKey
- Prompt
- Protocol
- ProxyHostname
- ProxyLogin
- ProxyPassword
- ProxyPort
- ProxyType
- RemoteIdentification
- Rows
- ShowStdErrorMessages
- State
- StateText
- StripANSI
- StripNull
- Subsystem
- TerminalSpeed
- TerminalType
- Timeout
- UseIPv6
- Version
- Events
- IwodSSHNotify
- How to get support?
- Technical information
- Fast notifications interface
- Error list
ProxyHostname property
Specifies the hostname of the proxy to use.
Type
A String value. Specifies the hostname of the proxy server.Syntax
- 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 wodSSH. |
value | A String value. |
Remarks
When the wodSSH 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 wodSSH 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, wodSSH will issue a request to the proxy to open a remote connection to the hostname specified by the ProxyHostname property.
For example,
wodSSH1.ProxyType = ProxyWEBStandard
wodSSH1.ProxyHostname = "proxy.server.com"
wodSSH1.ProxyPort = 80
wodSSH1.Connect "www.weonlydo.com"
would connect to WeOnlyDo's WEB server, but through the proxy 'proxy.server.com'.