Thanks Pmularien, I am using a custom User object. I have solved the problem. The problem was that in my UserDetailsService implementation class I was creating the User object with the wrong order of...
Type: Posts; User: kibyegon; Keyword(s):
Thanks Pmularien, I am using a custom User object. I have solved the problem. The problem was that in my UserDetailsService implementation class I was creating the User object with the wrong order of...
Thanks Luke for your fast reply. I printed out the password from my UserDetailsService implementation and it is the same password in the database. Could writing a TestCase give a different result?
...
I have a gwt 2.1 app with Spring-security(3.0.5) providing security for the app. I'm also using Hibernate 3.5.0 for persisting the data from the db.
Now there is a very weird problem that I have....
thanks pmularien for your prompt answer.
And you are right by stating that the context path i had in the form in my login page was resolving to the url...
Hello, Im using
Spring-security 3.0.5
Hibernate 3.5.0
jdk 1.6
tomcat 6.0.29
GWT 2.1.1
I have tried to deploy my app to apache tomcat and it loads successfully. But when I try to login, I get...
I solved the issue, The problem was that I was importing the Entity and Table class from org.hibernate.annotations instead of javax.persistence. After changing that, I got some errors but I fixed...
Thanks rwinch for taking your time to help. That was a good idea. Ive turned on logging and now I have some debug info that I can use. I think the problem lies in my mapping of the userDao. This is...
Hi,
I am trying to add spring security 3.0.5 to a GWT 2.1.1 application but something seems to elude me. I have a custom UserDetailsService with autowired beans. I'm using a hibernate 3.5.0...