"Rezaul H. Safiuddin" wrote:

> got a question  -- HttpSession is just an interface, right ?
> What is a standard implementation of HttpSession?
>

There is no "standard" implementation -- each servlet container provides
their own.  The implementation is aware of private details about that
container, and includes methods that are not visible to a servlet
developer.  The same is true for all of the other interfaces in the
Servlet API (such as HttpServletRequest and HttpServletResponse).

For Tomcat 3.2, the implementation class is
"org.apache.tomcat.session.StandardSession", which you can look at (if
you want) by downloading the Tomcat source code.

>
> Thanks,
>
> Kash
>

Craig McClanahan



---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, email: [EMAIL PROTECTED]

Reply via email to