This week's book giveaway is in the General Computing forum.
We're giving away four copies of Arduino in Action and have Martin Evans, Joshua Noble, and Jordan Hochenbaum on-line!
See this thread for details.
The moose likes Servlets and the fly likes JSP Servlet Problem Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login


JavaRanch » Java Forums » Java » Servlets
Reply Bookmark "JSP Servlet Problem" Watch "JSP Servlet Problem" New topic
Author

JSP Servlet Problem

Dilip kumar
Ranch Hand

Joined: Oct 16, 2000
Posts: 360
Hello All,
I have logon.jsp in c:\jakarta-tomcat\webapps\examples\jsp\
and VerifyUser.java and VerifyUser.class ( servlet ) in c:\jakarta-tomcat\webapps\examples\web-inf\classes
I deleted VerifyUser.class from the above folder and clicked on the submit button in JSP. Strange... It's still loading servlet and displaying latest data entered in JSP screen. What could be the reason ? Hidden copy of class file ?
Below is the code from JSP to call servlet.
<form method="post" name="logon" action="http://localhost:8080/examples/servlet/VerifyUser">
Thanks
Kapil Agrawal
Greenhorn

Joined: Nov 03, 2000
Posts: 11
The server loads all the servlets at initialization and your server might already have an old copy of class file. Restart the server and try again.
 
I agree. Here's the link: http://zeroturnaround.com/jrebel - it saves me about five hours per week
 
subject: JSP Servlet Problem
 
Similar Threads
Servlet Compilation Error
JSP not respondin..?
problem with RequestDispatcher
Session lost due to....?
HelloWorld.java won't compile....why?