Thanks Rob for the reply. Looks like "Persistent Token Approach" is better suited in our case, we will go with that.
Type: Posts; User: vgreddy43; Keyword(s):
Thanks Rob for the reply. Looks like "Persistent Token Approach" is better suited in our case, we will go with that.
I think I found the problem, it is with hard coded password ( "my_password" ). At the time of remember me cookie creation time password was different from "my_password".
Question is, how to...
Hi Rob thanks for your reply. Here is the code for MyRememberMeService:
public class MyRememberMeService extends TokenBasedRememberMeServices {
public MyRememberMeService() throws Exception {...
I am trying to setup 'Remember Me' option in my web page. While creating cookie there are no issues but when I close and open browser I am seeing below error: ( Cookie token[2] contained signature ...
Thanks Rob. You are 100% correct! We will look into one existing solution before implementing our own. In either case, we have to modify our existing application which has spring security...
Thanks for your info. We are going to encrypt the cookie before sending from SSO application to actual web aplication, I hope this will solve security issues. The reason for going to our own SSO...
We have an application which is using spring security for authentication and authorization. We are moving this process to another web application as part single sign on but we want to keep the...
Hi,
In my project I have about 25 different spring controllers and spring servlet.xml has become very large(about 700 lines). It is difficult to scroll up and down this file every time if I want...
When you do the validation first check whether the input field is valid String or not. Parse it only if it is a valid String otherwise return null. If you want I can give the code to do this.
...