Search:

Type: Posts; User: J Ball; Keyword(s):

Page 1 of 4 1 2 3 4

Search: Search took 0.03 seconds.

  1. Replies
    1
    Views
    637

    Here are a few I've looked at depending what you...

    Here are a few I've looked at depending what you need:
    - JavaMelody (open source - http://code.google.com/p/javamelody/)
    - PSI Probe (open source - http://code.google.com/p/psi-probe/)
    - App...
  2. Replies
    7
    Views
    4,551

    You probably want to implement your own...

    You probably want to implement your own AuthenticationSuccessHandler.
  3. Replies
    20
    Views
    3,234

    Try adding this:

    Try adding this:



    <intercept-url pattern="/loginProcess*" access="IS_AUTHENTICATED_ANONYMOUSLY"/>
  4. Replies
    20
    Views
    3,234

    Are you using 'intercept-url' in your Spring...

    Are you using 'intercept-url' in your Spring Security config file for https? If so you might want to make sure you have the following:



    <sec:intercept-url pattern="/loginProcess*"...
  5. Replies
    3
    Views
    680

    I have accomplished this by creating my custom...

    I have accomplished this by creating my custom AuthenticationProcessingFilter, AuthenticationSuccessHandler, and AuthenticationFailureHandler (which you probably don't need).
  6. Issue resolved! Once I noticed the logic had...

    Issue resolved! Once I noticed the logic had been moved to set the exception on session, I noticed a method I needed to call in my custom AuthenticationFailureHandler.



    ...
  7. After further investigation, it appears the...

    After further investigation, it appears the following code was removed from the AbstractAuthenticationProcessingFilter between 3.0.2 and 3.0.3. Where was it moved to? I have discovered that a...
  8. Just seems a bit odd that this doesn't happen...

    Just seems a bit odd that this doesn't happen with Spring Security 3.0.2 but it does with 3.0.3.
  9. I do have a custom FailureHandler that extends...

    I do have a custom FailureHandler that extends SimpleUrlAuthenticationFailureHandler to go to custom failure urls. This does not work in Spring Security 3.0.3 but it does work in 3.0.2.




    ...
  10. Replies
    5
    Views
    727

    What version of Spring Security are you using?

    What version of Spring Security are you using?
  11. Any ideas on how to debug why the ...

    Any ideas on how to debug why the SPRING_SECURITY_LAST_EXCEPTION isn't making it back to the page?
  12. Yes, I have the following configuration. ...

    Yes, I have the following configuration.



    <sec:intercept-url pattern="/loginProcess*" access="IS_AUTHENTICATED_ANONYMOUSLY" requires-channel="https"/>

    .
    .
    .
  13. WARN DefaultHandlerExceptionResolver - Request method 'POST' not supported

    I am getting a Tomcat error page during a failed login attempt for uri /loginProcess. Any ideas what would cause this? It started happening on the upgrade to Spring Security 3.0.2.

    Tomcat Error...
  14. Sure, here is my security config.

    Sure, here is my security config.



    <?xml version="1.0" encoding="UTF-8"?>

    <beans xmlns="http://www.springframework.org/schema/beans"
    xmlns:p="http://www.springframework.org/schema/p"...
  15. Nothing else changed other than updating the...

    Nothing else changed other than updating the following jars with 3.0.3. When I put the 3.0.2 jars back it worked fine. I debugged into the code and saw the exception but it was never set on...
  16. Can anyone understand why this would work in...

    Can anyone understand why this would work in Spring Security 3.0.2 but not 3.0.3? Thanks.
  17. SPRING_SECURITY_LAST_EXCEPTION in Spring Security 3.0.3 not set

    I just upgraded from Spring Security 3.0.2 to 3.0.3. Everything seemed to work fine except when a login exception occurred (e.g. BadCredentials). Reverting back to 3.0.2 fixed the problem.

    Here...
  18. Replies
    10
    Views
    3,014

    Where is an example of using a LoginController to...

    Where is an example of using a LoginController to serve muliple login pages? I agree that I seem to fight with Spring Security more than I should.
  19. Replies
    10
    Views
    3,014

    Were you able to get this working? It seems like...

    Were you able to get this working? It seems like something the framework should allow - determining which login form applies to which page, possibly within the intercept-url mappings.
  20. Replies
    6
    Views
    3,270

    Any help for this problem? Seems simple but how...

    Any help for this problem? Seems simple but how is it done with Spring Security?
  21. So does this require the DAO to use the...

    So does this require the DAO to use the @Repository annotation for the @PersistenceContext injection to work?
  22. When my DAO was annotated @Repository, everything...

    When my DAO was annotated @Repository, everything worked fine. I do not want to annotate my DAO, so I define it in XML configuration. Now my EntityManager is no longer being injected, and is null....
  23. What are you saying? What would the class/config...

    What are you saying? What would the class/config look like? I'm currently trying to still use
    @PersistenceContext
    private EntityManager em;

    The problem is the EntityManager is null. ...
  24. How to inject EntityManager using XML configuration (not annotations)

    I want to be able to modify my DAO classes using xml configuration, but i loose the injection of the EntityManager. Is there a way around this? Thanks.
  25. Why does SaltSource requires UserDetails object?

    I am trying to implement a SaltSource based on a property of my User entity (not the SpringFramework User). In order to accomplish this I need to map my User to an implementation of UserDetails so...
Results 1 to 25 of 77
Page 1 of 4 1 2 3 4