Error na implementação do struts

javax.servlet.ServletException: Cannot find ActionMappings or ActionFormBeans collection
Estou implementando struts e quando vou a pagina index.jsp o erro acima e apresentado. Estou utilizando do servidor J2SEE p/ teste.
Como posso resolver este problema?
Aguardando retorno …

Como está o seu struts-config.xml?

<?xml version = ‘1.0’ encoding = ‘windows-1252’?>
<!DOCTYPE struts-config PUBLIC “-//Apache Software Foundation//DTD Struts Configuration 1.1//EN” “http://jakarta.apache.org/struts/dtds/struts-config_1_1.dtd”>
<struts-config>
<form-beans>
<form-bean name=“loginForm” type=“utils.LoginForm”/>
</form-beans>
<global-forwards>
<forward name=“success” path="/inicio.jsp"/>
<forward name=“failure” path="/logonError.jsp"/>
</global-forwards>



</struts-config>