Sorry Dave. I saw the JIRA ticket you've mentioned and realized it's not easy for my situation. Here is my situation. I have around 2000 tokens/secrets stored in my table. When a user login to the...
Type: Posts; User: andyww; Keyword(s):
Sorry Dave. I saw the JIRA ticket you've mentioned and realized it's not easy for my situation. Here is my situation. I have around 2000 tokens/secrets stored in my table. When a user login to the...
Thanks Dave. I've been through the thread and it seems it'g gonna be quite complicated in order to wirte a client that supports multi connections for a single user. Spring OAuth seems not capable for...
Still can't find solution :(
:( anyone can help?
just realized there's already an annotation @Field that can do this.
I have an entity with lots of fileds in full names e.g. agreedContractForPartyA. This was fine with triditional database. Now with mongodb, the field name is stored in every document. Long filed name...
I need to query between 2 dates. With mongodb api, I can do:
query.put("plantime", new BasicDBObject("$gte",firstDate).append("$lte", secondDate));
Now with Spring data, I've tried:
...
:( Anyone knows?
I'm using spring managed session where all my DAO methods are annotated with @Transactional. Everything worked fine exception the caching is not happening at all. Here are the versions:
Hibernate...
The provided tonr sample is a web based application. The invocation is triggerred by user clicking on something through the web page. Now I have a scheduled job that needs to access other provides as...
Just realized my filter is not called from remember style login if I configure my filter this way:
[CODE]<custom-filter before="FORM_LOGIN_FILTER" ref="myAuthenticationListener"/>[CODE]
I then...
Thanks Rob,
Problem solved by extending UsernamePasswordAuthenticationFilter.successfulAuthentication() as you mentioned. Thanks a lot for your help!
Thanks Rob,
Yes, just realized it is caused by "authentication-success-handler-ref". I debugged into code and realized if authentication-success-handler is set, the rest of filter chain stops. My...
Here's the scenario:
1. user enters an url http://mysite.com/abc
2. spring security checks the remember-me related cookies.
3. when the user authentication information is valide. user gets...
I want the user to be redirected the the original url he/she entered after "remember-me" login successed. I've been searching over a day but couldn't find a easy solution.
from the posts below, it...
I have a website that users can login through web pages. The user roles are defined as ROLE_ADMIN, ROLE_USER etc. Now I wanna enable the 3rd party developers to make iPhone applications that connects...
I'm trying to implement an oAuth provider. I included filed from sparklr to my project which uses Spring MVC3.1 and Spring Security3.1. I then use tonr to access the service. Here's what happend:
1....