Hi,
When i deploy my web app and try to run the home page (I am using OC4J 10.1.2,
Servlet v2.3 Spec), i am getting the following error:
Error instantiating web-application
Listener class 'com.testa.testb.MyAppSessionBindingListener' was dit not implement 'javax.servlet.ServletContextListener', 'javax.servlet.ServletContextAttributeListener', 'javax.servlet.http.HttpSessionListener' or 'javax.servlet.http.HttpSessionAttributeListener'
Here is my web.xml entry:
<listener>
<listener-class>
com.testa.testb.MyAppSessionBindingListener
</listener-class>
</listener>
I am Implementing the HttpSessionBindingListener interface in MyAppSessionBindingListener.
Do you guys have any idea why this might be happening?
Thanks in advance for any responses.
-Arshad.