Re: sePrincipal

2006-02-19 Thread anil_a
Kind of. If I can set the principal on each request, then all down stream processing can go with that. Problem is that concreate class does not implement that. atleast as a public method. anil Anyone know how to get around this?? I am looking at Acegi filter code, how they do that. Ken Joh

Re: sePrincipal

2006-02-17 Thread Ken Johanson
[EMAIL PROTECTED] wrote: Thanks for reply Bill. Is there anyway to setPrincipal on HttpServletRequest? can I cast to concreate class that implemented that HttpServletRequest? Which class is it? Anil, is this what you are looking for? http://issues.apache.org/bugzilla/show_bug.cgi?id=38658

Re: sePrincipal

2006-02-16 Thread anil_a
Thanks for reply Bill. Is there anyway to setPrincipal on HttpServletRequest? can I cast to concreate class that implemented that HttpServletRequest? Which class is it? anil anil All I want to do is setPrincipal from a servlet filter. Bill Barker wrote: <[EMAIL PROTECTED]> wrote in messa

Re: sePrincipal

2006-02-16 Thread Bill Barker
<[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > Hi All > >I trying setPrincipal on request on tomcat 5.0.30. But servlet.api.jar > that comes with tomcat does not have setPrincipal method on HttpRequest > class. I look at the tomcat source and on AuthenticationBase class uses

sePrincipal

2006-02-16 Thread anil_a
Hi All I trying setPrincipal on request on tomcat 5.0.30. But servlet.api.jar that comes with tomcat does not have setPrincipal method on HttpRequest class. I look at the tomcat source and on AuthenticationBase class uses that method to setPrincipal. Am I using wrong servlet api jar? whic