I've already included this context Filter instead of using the listener. My issue is in my local-servlet.xml file. I have to use DTD instead of schema with 2.3 container correct? If so, then how do I use the aop:scoped-proxy tag, since the aop namespace is not defined? Is there a way to define it using DTD structure? Here's what I have at the beginning of my local-servlet.xml file:
Code:
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE beans PUBLIC "-//SPRING//DTD BEAN 2.0//EN"
"http://www.springframework.org/dtd/spring-beans-2.0.dtd">
<!--
- Application context definition for "springapp" DispatcherServlet.
-->
<beans>
...
Instead of what I used to have:
Code:
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:aop="http://www.springframework.org/schema/aop"
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.0.xsd
http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-2.0.xsd">
Did I clarify the issue I'm having?