Erro JSP.....LoadBundleTag.doStartTag(LoadBundleTag.java:96)

Olá pessoal,

está me dando esse erro :

SEVERE: Servlet.service() for servlet jsp threw exception
java.lang.NullPointerException
at com.sun.faces.taglib.jsf_core.LoadBundleTag.doStartTag(LoadBundleTag.java:96)

jar atachado em meu projeto:

  • jasper.jar
  • jsf-api.jar
  • jsf-impl.jar
  • servlet-api.jar

Se alguém puder me ajudar agradeceria.

abs


<%@ taglib uri="http://java.sun.com/jsf/html" prefix="h" %>
<%@ taglib uri="http://java.sun.com/jsf/core" prefix="f" %>
<f:loadBundle basename="jsfks.bundle.messages" var="msg"/>

<html>
 <head>
  <title>enter your name page</title>
 </head>
 <body>
   <f:view>
     <h1>
      <h:outputText value="#{msg.inputname_header}"/>
     </h1>
     <h:form id="helloForm">
      <h:outputText value="#{msg.prompt}"/>
      <h:inputText value="#{personBean.personName}" />
      <h:commandButton action="greeting" value="#{msg.button_text}" />
     </h:form>
   </f:view>
 </body>
</html>  

--web.xml
<?xml version="1.0" encoding="UTF-8"?>
<!-- web-app id="WebApp_ID" 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"-->

<web-app>    

  <display-name>jsfks</display-name>
  
  <welcome-file-list>
    <welcome-file>index.html</welcome-file>
    <welcome-file>index.htm</welcome-file>
    <welcome-file>index.jsp</welcome-file>
    <welcome-file>default.html</welcome-file>
    <welcome-file>default.htm</welcome-file>
    <welcome-file>default.jsp</welcome-file>
  </welcome-file-list>
 
 <!-- JSF--> 
  <context-param>
    	<param-name>javax.faces.CONFIG_FILES</param-name>
    	<param-value>/WEB-INF/faces-config.xml</param-value>
  </context-param>

  <listener>
        <listener-class>com.sun.faces.config.ConfigureListener</listener-class>
  </listener>  
  
  <!-- Faces Servlet -->
  <servlet>
    <servlet-name>Faces Servlet</servlet-name>
    <servlet-class> javax.faces.webapp.FacesServlet</servlet-class>
    <load-on-startup> 1 </load-on-startup>
  </servlet>

   
  <taglib>
		<taglib-uri>http://java.sun.com/jsf/html</taglib-uri>
		<taglib-location>/WEB-INF/html_basic.tld</taglib-location>
 </taglib>
	
 <taglib>
		<taglib-uri>http://java.sun.com/jsf/core</taglib-uri>
		<taglib-location>/WEB-INF/jsf_core.tld</taglib-location>
 </taglib>
  
</web-app>