This week's book giveaway is in the Agile and other Processes forum. We're giving away four copies of The Mikado Method and have Ola Ellnestam and Daniel Brolund on-line! See this thread for details.
when ever i run the jsp in j2ee server, i get the following error error 1 Unhandled error! You might want to consider having an error page to report such errors more gracefully javax.servlet.ServletException: null at java.lang.Throwable.(Compiled Code) at java.lang.Exception.(Compiled Code)
error 2 unable to load class contact(this is classname) remove my gloom please thanx in advance, regards Mohamed Ashraf.M
William Brogden
Author and all-around good cowpoke
Rancher
Joined: Mar 22, 2000
Posts: 12268
1
posted
0
For problem 1 - define an error page and have it dump a stack trace. For problem 2 - the most common causes are: a. class file in the wrong place b. failure to give the complete package in the class attribute of your <jsp:useBean tag Bill