Page 2 of 2 FirstFirst 12
Results 11 to 13 of 13

Thread: Spring Security logout error login

  1. #11
    Join Date
    Oct 2011
    Posts
    6

    Default

    well that is the problem my login page is not displayed and i cant login.

  2. #12
    Join Date
    Jan 2008
    Posts
    1,826

    Default

    The logs still do not contain anything about the request for the authentication entry point. Another thing is that the login page is not public. Add it as an intercept-url with access="permitAll"

    PS: I did not realize your problem no longer required you to logout. You may give detailed steps for how to reproduce the problem. I was interpreting your update as requiring the same steps (i.e. the user logs out and then tries to login), but something different being displayed.
    Rob Winch - @rob_winch
    Spring Security Lead
    Pivotal

  3. #13
    Join Date
    Nov 2011
    Location
    Peru-Lima
    Posts
    2

    Default

    Sorry y not speak english, but in this error, i repair with:
    <http auto-config="true">
    <intercept-url pattern="/zkau/**" filters="none" />
    <intercept-url pattern="/login.zul" access="IS_AUTHENTICATED_ANONYMOUSLY" />
    <intercept-url pattern="/**" access="ROLE_SUPERVISOR" />
    <form-login login-page="/login.zul"
    authentication-failure-url="/login.zul?login_error=1"
    always-use-default-target="true" default-target-url="/home.zul" />
    ....
    ....
    Last edited by apalpan; Dec 1st, 2011 at 10:42 PM.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •