Ciao a tutti, premetto che nei confronti della famiglia xml,xl* e compagnia bella sono un principiante.
Sto facendo un corso java, quello del sito ufficiale per j2ee, ho scaricato degli esempi di pagine xml, ma quando richiamo la pagina dal browser, vengono fuori i tag veri e propri e non vedo la visualizzazione html perche??
riporto il codice della pagina:
<!DOCTYPE html SYSTEM "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<HTML xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
<HEAD> <title>Hello</title> </HEAD>
<%@ page contentType="application/xhtml+xml" %>
<%@ taglib uri="http://java.sun.com/jsf/html" prefix="h" %>
<%@ taglib uri="http://java.sun.com/jsf/core" prefix="f" %>
<body bgcolor="white">
<f:view>
<h:form id="helloForm" >
<h2>Hi. My name is Duke. I'm thinking of a number from
<hutputText lang="en_US" value="#{UserNumberBean.minimum}"/> to
<hutputText value="#{UserNumberBean.maximum}"/>. Can you guess
it?</h2>
<h:graphicImage id="waveImg" url="/wave.med.gif" alt="Duke waving" />
<h:inputText id="userNo" label="User Number" value="#{UserNumberBean.userNumber}"
converterMessage="#{ErrMsg.userNoConvert}">
<f:validateLongRange minimum="#{UserNumberBean.minimum}" maximum="#{UserNumberBean.maximum}" />
</h:inputText>
<h:commandButton id="submit" action="success" value="Submit" />
<h:message style="color: red; font-family: 'New Century Schoolbook', serif; font-style: oblique; text-decoration: overline" id="errors1" for="userNo"/>
</p>
</h:form>
</f:view>
</body>
</HTML>
Premetto che il tutto viene eseguito sull'application server.
Ciao grazie


utputText lang="en_US" value="#{UserNumberBean.minimum}"/> to
