Here is the JSP page.
<%@ page language="java" import="java.util.*" pageEncoding="ISO-8859-1"%>
<%
String path = request.getContextPath();
String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
%>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
    <html>
        <head>
            <base href="<%=basePath%>">
            <title>My JSP 'manageMedAid.jsp' starting page</title>
            <meta http-equiv="pragma" content="no-cache">
            <meta http-equiv="cache-control" content="no-cache">
            <meta http-equiv="expires" content="0">
            <meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
            <meta http-equiv="description" content="This is my page">
            <!--
    <link rel="stylesheet" type="text/css" href="styles.css">
    -->
        </head>
        <body>
        <br>
            This is the top level Med Aid page mcfk.
            <f:view>
            <h:form rendered="true" id="formToManMedAid">
                <h:commandButton action="manClaims" rendered="true"
                    value="Manage Claims">claims</h:commandButton>
                <h:commandButton action="manPats" rendered="true"
                    value="Manage Patients">patients</h:commandButton>
            </h:form>
            <br>
        </f:view>
        <br>
        This is after the buttons
        </body>
    </html>
Here is the JSP preview

Here is the view in the Eclipse Browser

What am I doing wrong?
Thanks,
Mike King