< prev index next >

src/share/lib/net.properties

Print this page
rev 1572 : 8160838: Better HTTP service
Reviewed-by: ahgross, alanb, michaelm


  55 # (e.g. proxy.mydomain.com), proxyPort is the port number to use (default
  56 # value is 80)
  57 #
  58 # gopher.proxyHost=
  59 # gopher.proxyPort=80
  60 #
  61 # Socks proxy settings. socksProxyHost is the name of the proxy server
  62 # (e.g. socks.domain.com), socksProxyPort is the port number to use
  63 # (default value is 1080)
  64 #
  65 # socksProxyHost=
  66 # socksProxyPort=1080
  67 #
  68 # HTTP Keep Alive settings. remainingData is the maximum amount of data
  69 # in kilobytes that will be cleaned off the underlying socket so that it 
  70 # can be reused (default value is 512K), queuedConnections is the maximum 
  71 # number of Keep Alive connections to be on the queue for clean up (default
  72 # value is 10).
  73 # http.KeepAlive.remainingData=512
  74 # http.KeepAlive.queuedConnections=10





























  55 # (e.g. proxy.mydomain.com), proxyPort is the port number to use (default
  56 # value is 80)
  57 #
  58 # gopher.proxyHost=
  59 # gopher.proxyPort=80
  60 #
  61 # Socks proxy settings. socksProxyHost is the name of the proxy server
  62 # (e.g. socks.domain.com), socksProxyPort is the port number to use
  63 # (default value is 1080)
  64 #
  65 # socksProxyHost=
  66 # socksProxyPort=1080
  67 #
  68 # HTTP Keep Alive settings. remainingData is the maximum amount of data
  69 # in kilobytes that will be cleaned off the underlying socket so that it 
  70 # can be reused (default value is 512K), queuedConnections is the maximum 
  71 # number of Keep Alive connections to be on the queue for clean up (default
  72 # value is 10).
  73 # http.KeepAlive.remainingData=512
  74 # http.KeepAlive.queuedConnections=10
  75 
  76 # Authentication Scheme restrictions for HTTP and HTTPS.
  77 #
  78 # In some environments certain authentication schemes may be undesirable
  79 # when proxying HTTP or HTTPS.  For example, "Basic" results in effectively the
  80 # cleartext transmission of the user's password over the physical network.
  81 # This section describes the mechanism for disabling authentication schemes
  82 # based on the scheme name. Disabled schemes will be treated as if they are not
  83 # supported by the implementation.
  84 #
  85 # The 'jdk.http.auth.tunneling.disabledSchemes' property lists the authentication
  86 # schemes that will be disabled when tunneling HTTPS over a proxy, HTTP CONNECT.
  87 # The 'jdk.http.auth.proxying.disabledSchemes' property lists the authentication
  88 # schemes that will be disabled when proxying HTTP.
  89 #
  90 # In both cases the property is a comma-separated list of, case-insensitive,
  91 # authentication scheme names, as defined by their relevant RFCs. An
  92 # implementation may, but is not required to, support common schemes whose names
  93 # include: 'Basic', 'Digest', 'NTLM', 'Kerberos', 'Negotiate'.  A scheme that
  94 # is not known, or not supported, by the implementation is ignored.
  95 #
  96 # Note: This property is currently used by the JDK Reference implementation. It
  97 # is not guaranteed to be examined and used by other implementations.
  98 #
  99 #jdk.http.auth.proxying.disabledSchemes=
 100 jdk.http.auth.tunneling.disabledSchemes=Basic
 101 
< prev index next >