Search:

Type: Posts; User: andyww; Keyword(s):

Search: Search took 0.03 seconds.

  1. Replies
    5
    Views
    770

    Sorry Dave. I saw the JIRA ticket you've...

    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...
  2. Replies
    5
    Views
    770

    Thanks Dave. I've been through the thread and it...

    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...
  3. Replies
    3
    Views
    1,425

    Still can't find solution :(

    Still can't find solution :(
  4. Replies
    5
    Views
    770

    :( anyone can help?

    :( anyone can help?
  5. Replies
    2
    Views
    719

    just realized there's already an annotation...

    just realized there's already an annotation @Field that can do this.
  6. Replies
    2
    Views
    719

    Alias for field in mongodb?

    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...
  7. Replies
    3
    Views
    1,425

    Quering date range from mongodb?

    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:
    ...
  8. :( Anyone knows?

    :( Anyone knows?
  9. ehcache not working with spring managed sessions

    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...
  10. Replies
    5
    Views
    770

    OAuth1 standalone app sample for consumer?

    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...
  11. Just realized my filter is not called from...

    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...
  12. Thanks Rob, Problem solved by extending...

    Thanks Rob,

    Problem solved by extending UsernamePasswordAuthenticationFilter.successfulAuthentication() as you mentioned. Thanks a lot for your help!
  13. Thanks Rob, Yes, just realized it is caused by...

    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...
  14. Redirect to original url after "remember-me" login

    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...
  15. easy way to redirect to original url after "remember-me" login

    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...
  16. question about consumer roles and user roles

    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...
  17. Replies
    0
    Views
    228

    Not procceded after user signin

    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....
Results 1 to 17 of 17