we can get the session if we can access to HTTP request object like below:
HttpSession session = request.getSession();
But, How to retrieve the HTTP session inside init method of Servlet ?
If the presentation Layer is powered by JSF , Can servlet access to FacesContext to get the HTTP Session ? 
 
     
    