I have created a simple JSP that imports one of my own classes to validate
users, get users rights, etc... When I make changes to this "external"
class, it is not updated. For instance:
public class UserVerify {
public String sName = "Jeremy";
}
I compile it, run my .JSP accessing the sName member, and my .JSP will
display "Jeremy" however if I were to then change my class to read:
public class UserVerify {
public String sName = "John Doe";
}
then re-compile that class and re-run my .JSP I would still get "Jeremy" ...
As soon as I restart orion server, I will then begin getting "John Doe".
Can anyone help me with this? You don't have to restart the server everytime
you make a change to a support class, do you?
Thanks!
Jeremy - [EMAIL PROTECTED]