On Jan 25, 2010, at 2:09 AM, Erdinc Yilmazel wrote:
> How can I access the HttpSession from a ContainerRequestFilter
> implementation? Or at least properties within the session?
>
Inject HttpServletRequest:
@Context HttpServletRequest hsr;
and get the session from that.
Paul.