http TacHTTPAccessType type
Return to Introduction 
Unit
acHTTP

Declaration
type  
  TacHTTPAccessType = (atPreconfig, atDirect, atProxy);  

Description
The TacHTTPAccessType type contains information about possible values for AccessType property of the Proxy structure (used in acHTTP and acAutoUpgrader components).  
 
The AccessType property controls how the component should access the remote server to request data. The AccessType can be direct or via the proxy server. If you'd like to use the access type previously configured in the Control Panel — leave the AccessType = atPreconfig.  
 
There are possible values:  
Values   Meaning  
atPreconfigretrieves the proxy or direct configuration from the registry (user can configure the access type in the Control Panel);  
atDirectuses the direct connection and resolves all host names locally;  
atProxyaccess the remote data via the proxy server. Passes all requests to the proxy, unless a proxy bypass list is not empty and the name to be resolved bypasses the proxy. To specify the proxy server and port — use ProxyServer and ProxyPort properties. To configure bypass list — use ProxyBypass property.  

See also
ProxyServer, ProxyPort and ProxyBypass properties;  
acHTTP and acAutoUpgrader components.