This content has been marked as final. 
    
Show                 3 replies
    
- 
        1. Re: Losing authentication information during sessionanthony.dupre Oct 13, 2005 4:33 PM (in response to lduperval)I am having the same problem with JBoss AS 4.0.3 
 Did you find a remedy?
- 
        2. Re: Losing authentication information during sessionlduperval Oct 14, 2005 8:07 AM (in response to lduperval)Yes. I use struts and it turns out that if the action doesn't appear correctly in the struts.xml and the web.xml, you can see this behaviour. 
 In my case, I had an action that was called
 But in my web.xml it was called /MyComponentDelete.do. By changing the name to /MyComponentDeleteAction.do in web.xml the problem went away. You may be facing a similar issue.
 L
- 
        3. Re: Losing authentication information during sessionlduperval Oct 14, 2005 8:09 AM (in response to lduperval)Ugh. It should say: 
 action path="/MyComponentDeleteAction"
 type = "my.DeleteAction"
 
    