Drasko Kokic wrote:

> Hi there,
>
> I am trying to implement our SingleLogin architecture
> using the Servlet API 2.2 recomendations.
>
> I would like to know why
> org.apache.tomcat.core.Request
> is not implementing methods from
> javax.servlet.http.Request?
>

I assume you really mean javax.servlet.http.HttpServletRequest, right?

If so, the actual implementation classes for the servlet APIs are in
separate "facade" classes.  To get
ahold of one, simply call the getFacade() method on the Request object.

NOTE:  You should also know that Tomcat 4.0 already supports this
feature.

Craig McClanahan

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

Reply via email to