Yes I do have all the four tlds in the META-INF/TLD folder. SO then what shall i write in the web.xml . My web.xml is as under
<?xml version="1.0" encoding="ISO-8859-1"?>
<web-app>
<display-name>Struts Blank Application</display-name>
<!-- Standard Action Servlet Configuration -->
<servlet>
<servlet-name>action</servlet-name>
<servlet-class>org.apache.struts.action.ActionServlet</servlet-class>
  <init-param>
 :  :<param-name>config</param-name>
 :  :<param-value>/WEB-INF/struts-config.xml</param-value>
 :</init-param>
 :<load-on-startup>2</load-on-startup>
</servlet>
<!-- Standard Action Servlet Mapping -->
<servlet-mapping>
<servlet-name>action</servlet-name>
<url-pattern>*.do</url-pattern>
</servlet-mapping>
<taglib>
 :  : <taglib-uri>http://struts.apache.org/tags-logic</taglib-uri>
 :  :<taglib-location>/WEB-INF/libstruts-logic.tld</taglib-location>
</taglib>
<!-- The Usual Welcome File List -->
<welcome-file-list>
 :  :<welcome-file>index.jsp</welcome-file>
</welcome-file-list>
</web-app>