A biblioteca de tags suporta namespace: http://java.sun.com/jsf/core, mas nenhuma tag foi definida para name: ajax

Abaixo da página

<%@ taglib prefix="h" uri="http://java.sun.com/jsf/html" %>
<%@ taglib prefix="f" uri="http://java.sun.com/jsf/core" %>
<h:form>
    <h:outputLabel id="outtxt" value="#{user.name}"/>
    <h:inputText id="intxt" value="#{user.name}">
        <f:ajax event="keyup" execute="intxt" render="outtxt"/>
    </h:inputTtext>
</h:form>

Joga abaixo do erro

A biblioteca de tags suporta namespace:http://java.sun.com/jsf/core, mas nenhuma tag foi definida para o nome: ajax

Como isso é causado e como posso resolvê-lo?

questionAnswers(1)

yourAnswerToTheQuestion