I am trying to develope a war file under tomcat and I ma getting this error. Here is web.xml
<?xml version="1.0" encoding="UTF-8"?>
<web-app version="2.4" xmlns="http://java.sun.com/xml/ns/j2ee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd">
<display-name>Harte Hanks PreEnrollment </display-name>
<description>Harte Hanks PreEnrollment Packect Scheduler Application</description>
<context-param>
<param-name>contextConfigLocation</param-name>
<param-value>
/WEB-INF/applicationContext-DB.xml /WEB-INF/applicationContext-Logger.xml /WEB-INF/applicationContext-HarteHanksPreEnrollment.xml
</param-value>
</context-param>
<context-param>
<param-name>log4jConfigLocation</param-name>
<param-value>/WEB-INF/log4j.properties</param-value>
</context-param>
<listener>
<listener-class>org.springframework.web.context.ContextLoade rListener</listener-class>
</listener>
</web-app>
Any help would be greatly appreciated.
Thanks
Nandhu


Reply With Quote