bookstore 5 JEE5 TUTORIAL: books.jspx FileNotFoundException
Hi All!
I am trying to execute the bookstore5 example application from JEE5 TUTORIAL. When i deploy and launch appplication in NetBeans i'm getting the following message:
javax.servlet.jsp.JspException: Problem accessing the absolute URL "http://localhost:8080/books/books.jspx". java.io.FileNotFoundException: http://localhost:8080/books/books.jspx : java.io.FileNotFoundException: http://localhost:8080/books/books.jspx
I looked at parsebooks.jsp file. It contains the following code:
<code>
<c:if test="${empty applicationScope.booklist}" >
<c:import url="${initParam.booksURL}" var="xml" />
<x:parse doc="${xml}" var="booklist" scope="application" />
</c:if>
</code>
If i understood It must parse a file named books.jspx which location is specified by url="${initParam.booksURL}" . Where is this file? I cant find it in my project files.
Thanks.

