Chaster 2 Junior Poster in Training

Hello.
Well, I've been trying to create a a web app, using JSP+JSF technologies. I've completed writing the background classes, and also created a test jsp page:

<html xmlns="http://www.w3.org/1999/xhtml"
      xmlns:jsp="http://java.sun.com/JSP/Page"
      xmlns:f="http://java.sun.com/jsf/core"
      xmlns:h="http://java.sun.com/jsf/html"
      xml:lang="en" lang="en">
<jsp:directive.page contentType="application/xhtml+xml; charset=UTF-8"/>

<head>
<title>Please log in</title>
</head>
<body>
	<f:view>
		<h:form id="loginform">
			<h:outputText value="Something"/>
			<h:commandButton id="login" action="login" value="Log in" />
		</h:form>
	</f:view>
</body>
</html>

The problem is, I'm shown a white page (with the corresponding title), and nothing else. It doesn't show the text, nor the button. I'm using tomcat 6.0.18...
Can anybody help me?
Thanx.

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.