Hi, I am trying to retrieve CGI environment Variables inside the Servlet/JSP. Specifically the variable which tells about the requesting browsers encryption level. What I am trying to do is to determine the encryption level of the browser, wether the browser supports 40 or 128 bit encryption. Any help will be appreciated. Anil Kurian anil.kurian@mailcity.com
William Brogden
Author and all-around good cowpoke
Rancher
Joined: Mar 22, 2000
Posts: 12266
1
posted
0
For an example of retrieving data from the request headers, see the SnoopServlet that is a common example in Tomcat and other servlet engine packages. See the documentation for ServletRequest and HttpServletRequest for methods to get specific data from the request. Bill