Skip to Main Content

Java EE (Java Enterprise Edition) General Discussion

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

javax.servlet.ServletException: java.io.FileNotFoundException:

843844Nov 15 2007 — edited Nov 15 2007
Hi,

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.
Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on Dec 13 2007
Added on Nov 15 2007
1 comment
378 views