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
HttpAuthentications enumeration
These are all possible authentication modes when connecting to restricted web resource, either on WEB server or on Proxy server.
Remarks
AuthNone value means no authentication will be used or sent by wodHttpDLX. When AuthBasic is used, wodHttpDLX will send base64 encoded information contained in Login and Password (or ProxyLogin and ProxyPassword) properties. AuthNTLM mode sends sequence of challenges/respones with the (proxy) server in order to authenticate with the (proxy) server, but without ever sending plaintext password over insecure network. AuthDigest is used mostly with WebDAV servers. This type sends only one challenge/response, and password is never sent to the server in cleartext. Using AuthWindowsIntegrated currently logged in Windows user login and password will be used for NTLM authentication. AuthAutomatic mode will try to get resource from the WEB without any authentication information sent. If request fails, it will then re-request it using stronger authentication mode available by the server (Digest, then NTLM , then Basic). MembersConstant | Value | Description |
---|---|---|
AuthNone | 0 | No authentication |
AuthAutomatic | 1 | Auto select authentication |
AuthBasic | 2 | Basic authentication |
AuthNTLM | 3 | NTLM authentication |
AuthDigest | 4 | Digest authentication |
AuthWindowsIntegrated | 5 | Windows Integrated authentication |