Back to product page
- Introduction
- Overview
- License agreement
- Getting Started
- Objects
- Enumerations
- wodSFTP
- Methods
- Abort
- About
- AppendData
- AppendFile
- Connect
- DeleteFile
- DeleteFiles
- Disconnect
- ExtendedCmd
- GetAttributes
- GetData
- GetDataAt
- GetFile
- GetFileAt
- GetFiles
- ListAttributes
- ListDir
- ListNames
- LoopFiles
- MakeDir
- PutData
- PutDataAt
- PutFile
- PutFileAt
- PutFiles
- RealPath
- RemoteClose
- RemoteOpen
- RemoteRead
- RemoteWrite
- RemoveDir
- Rename
- SetAttributes
- SetAttributes64
- Properties
- Authentication
- Blocking
- BufferSize
- ClientName
- Compression
- Encryption
- EncryptionList
- ErrorText
- Extensions
- FingerPrint
- FIPS
- HMacList
- Hostname
- KeepAlives
- KeyExchangeList
- KeySignatureList
- LastError
- ListItem
- LocalPath
- Login
- MaxTransferRate
- MyHostname
- MyIP
- Notification
- Password
- Port
- PrivateKey
- ProxyHostname
- ProxyLogin
- ProxyPassword
- ProxyPort
- ProxyType
- RemoteIdentification
- RemotePath
- Resume
- ServerErrorCode
- ServerErrorText
- State
- StateText
- Timeout
- Timezone
- TransferMode
- TransferRate
- TransferTime
- UseIPv6
- Version
- Events
- Methods
- IwodSFTPNotify
- SftpItem
- SftpItems
- 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 wodSFTP. |
value | A String value. |
Remarks
When the wodSFTP client is unable to establish a direct connection (when not connected directly to the Internet, for example), the proxy option can be used. There are several types of proxies supported by the wodSFTP 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, wodSFTP will issue a request to the proxy to open a remote connection to the hostname specified by the ProxyHostname property.
For example,
wodSFTP1.ProxyType = ProxyWEBStandard
wodSFTP1.ProxyHostname = "proxy.server.com"
wodSFTP1.ProxyPort = 80
wodSFTP1.Connect "linux.weonlydo.com"
would connect to WeOnlyDo's test SFTP server, but through the proxy 'proxy.server.com'.