Vassilis Virvilis wrote:
<?xml version="1.0"?> <!DOCTYPE web-app PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN" "http://java.sun.com/dtd/web-app_2_3.dtd">
I notice you're using a Servlet 2.3 web.xml - what servlet container are you using? The RequestContextListener only works with a Servlet 2.4-compatible container (if you're on Tomcat, this means v5.0 or later), if you're stuck with an older server version then you can use the RequestContextFilter instead.
Oh yes, and you do have an <aop:scoped-proxy/> in your session-scoped <bean>, don't you...?
Other than that I don't know what to suggest, sorry. Ian -- Ian Roberts | Department of Computer Science [EMAIL PROTECTED] | University of Sheffield, UK
