ServletContext -Servlet/Filter/ServletContextListener
Hi,
Is the ServletContext returned from the filter code:
ServletContext context = config.getServletContext();
different from the ServletContext returned from Servlet or ServletContextListener:
Servlet
ServletContext context = getServletContext();
ServletContextListener
this.context = event.getServletContext();
I think I have tried everything to initialize the values in the ServletContext in the Filter, I always get a NULL, my only assumption is that these are 2 separate objects? Is this true?

