javax.servlet.ServletException: java.io.FileNotFoundException:
843844Nov 15 2007 — edited Nov 15 2007Hi,
Can someone please help, I'm not sure what I'm doing wrong here?
I keep receiving a FileNotFoundException but don't know why.
============================
exception:
javax.servlet.ServletException: java.io.FileNotFoundException: /pages/.jsp
root cause
java.io.FileNotFoundException: /pages/.jsp
============================
This is the page that I think the error is originating from:
<%@ page language="java" pageEncoding="ISO-8859-1" %>
<%@ taglib uri="http://java.sun.com/jsf/html" prefix="h" %>
<%@ taglib uri="http://java.sun.com/jsf/core" prefix="f" %>
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<f:view>
<f:loadBundle basename="crsodr.common.view.resource.ResourceBundle" var="msgs"/>
<html>
<head>
<title><h:outputText value="#{msgs.Welcome_Title}"/></title>
<!-- Do not locally cache documents -->
<meta http-equiv="pragma" content="no-cache">
<meta http-equiv="cache-control" content="no-cache">
<meta http-equiv="expires" content="0">
<link rel="stylesheet" type="text/css" href="css/crsodr.css">
</head>
<body topmargin="3">
<h:form>
<h:panelGrid columns="2" styleClass="page" columnClasses="menuColumn, pageColumn">
<f:facet name="header">
<f:subview id="header">
<c:import url="/header.jsp"/>
</f:subview>
</f:facet>
<f:subview id="menu">
<c:import url="/menu.jsp"/>
</f:subview>
<c:import url="/content.jsp"/>
</h:panelGrid>
</h:form>
</body>
</html>
</f:view>
=================================
Does anyone know what the problem is and how it can be resolved? All your help is greatly appreciated.