Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

FILE NOT FOUND EXCEPTION when running jsp with oracle

Status
Not open for further replies.

dendog

Programmer
Jun 28, 2001
53
US
hi all;
i am using oracle software with jdk1.2 Jserv and Apache.
I have my JSP file in the directory htdocs/Mem_project--the file is named inventory.jsp. When i call this file from my internet explorer brower i get a JSP error that is
JSPException:fileNotFound
i call it by doing /IPadress/Mem_Project/inventory.jsp and it gives me this error
However when i just type in /IPadress/ the oracle server home page comes up just fine--what am i doing wrong and why isnt my system recognizing that this jsp file exists?What am I forgetting
Thanx in advance
DENNIS




Is this post offensive?
If so, Red Flag it!



 
JSP engine normally uses its own directory tree. Apache redirects all jsp calls to Jserv, which in turn may know nothing about Apache's root. Try to place your page under Jserv tree. I'm not experienced in Jserv for using Tomcat but as they're of common origin, you probably have to place your project directory into webapps directory. Don't forget to restart Jserv and Apache.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top