
|
If you were logged in you would be able to see more operations.
|
|
|
Click
Created: 27/May/08 11:14 PM
Updated: 07/Jun/08 02:10 AM
|
|
| Component/s: |
core
|
| Affects Version/s: |
1.5 M2
|
| Fix Version/s: |
1.5 M2
|
|
|
If the HttpSession is manually invalidated exceptions will be thrown because Context#getSession() returns a cached invalid session.
To fix we could change Context#getSession to:
public HttpSession getSession() {
return request.getSession();
}
|
|
Description
|
If the HttpSession is manually invalidated exceptions will be thrown because Context#getSession() returns a cached invalid session.
To fix we could change Context#getSession to:
public HttpSession getSession() {
return request.getSession();
} |
Show » |
|
|
Issue need to be reviewed.