Results 1 to 2 of 2

Thread: login page is redirected after login (submit)

  1. #1
    Join Date
    Feb 2009
    Posts
    10

    Default login page is redirected after login (submit)

    Hi all

    The problem is that i get redirected back to login page after login and there are no error displayed...please help

    applicationContext
    Code:
    <security:http auto-config="true" access-denied-page="/loginError.htm" >
    
    <!-- ==== Don't set any role restrictions on login.jsp ====-->
          
    <security:intercept-url pattern="/loginPage.htm*"  
    access="IS_AUTHENTICATED_ANONYMOUSLY" />
    
    <security:form-login login-page="/loginPage.htm?method=login" />
    <security:form-login login-processing-url="/j_spring_security_check" />
    <security:form-login default-target-url="/employee.htm?method=loadEmployee"/>
    <security:form-login authentication-failure-url="loginPage.htm?login_error=1" />
            
    <security:intercept-url pattern="/**.htm" access="ROLE_USER" />
    <security:logout logout-success-url="/loginPage.htm" />
    
    </security:http>
    <security:authentication-provider user-service-ref="userDetailService" />
    <bean id="userDetailService" 
    class="org.springframework.security.userdetails.jdbc.JdbcDaoImpl" >
    
        <property name="dataSource" ref="dataSource" />
        <property name="rolePrefix" value="ROLE_" />
    
        <property name="usersByUsernameQuery" value="SELECT 
    User_Name,Authority from Employee WHERE User_Name=?" />
    
        </bean>
    Thank you...

  2. #2
    Join Date
    Feb 2009
    Posts
    10

    Default

    ....please someone direct me in the right direction...

    ..i've been searching though the web and could not find a solution to the problem i'm facing..it may be a trivial issue for most of the peoples here but i've being strugging to find a solution..and i have to submit my work in one week..please help!!!!!!!
    Last edited by as1; Mar 12th, 2009 at 02:47 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
  •