Ok , I am at work .
Working for the first time with sessions my boss wants me to figure out a problem with this session stuff.
What is happening is we are using jetty application server.
Whenever we change the password. And try to login in with the new password it won't let us.
We still have to use the old password. Until we shutdown the server an restart it.
I know the password is being stored properly in the mysql database when the use click save new password button.
The problem is when he clicks log out and goes back into the login page and types the new password it won't work. But the old password works until we shutdown the server. How is this even possible the old password isn't even in the data base.
Is something caching the old password I am using <form id="form-login" name="login" method="post" action="j_security_check" >
could this be caching the old password or doing something werid. I would think it would be using the current thing stored in the database?
And on top of all this my boss is pushing me to figure this out. AAAAAAAAAAA
H