Results 1 to 3 of 3

Thread: where exists the " /j_acegi_security_check" ?

  1. #1

    Default where exists the " /j_acegi_security_check" ?

    could someone tell me where exists the " /j_acegi_security_check"

    I didn't find it in the example.

    but the example works well.

    I did in my webapp. but it caused can't find the resource error.


    ============================================

    <bean id="authenticationProcessingFilter" class="net.sf.acegisecurity.ui.webapp.Authenticati onProcessingFilter">
    <property name="authenticationManager">
    <ref bean="authenticationManager" />
    </property>

    <property name="authenticationFailureUrl">
    <value>/acegilogin.jsp?login_error=1</value>
    </property>

    <property name="defaultTargetUrl">
    <value>/</value>
    </property>

    <property name="filterProcessesUrl">
    <value>/j_acegi_security_check</value>
    </property>
    </bean>

    <bean id="authenticationProcessingFilterEntryPoint" class="net.sf.acegisecurity.ui.webapp.Authenticati onProcessingFilterEntryPoint">
    <property name="loginFormUrl">
    <value>/acegilogin.jsp</value>
    </property>

    <property name="forceHttps">
    <value>false</value>
    </property>
    </bean>

  2. #2
    Join Date
    Sep 2004
    Location
    Portland, OR
    Posts
    54

    Default

    j_security_check is not a file -- it is simply an agreed upon path that containers (servers) use for doing form based authentication on a webapp.

    http://forum.java.sun.com/thread.jsp...65774&tstart=0

  3. #3

    Default

    I 've found the deferences.

    <form action="<c:url value="/j_acegi_security_check"/>" method="post"> can work

    <form action="/j_acegi_security_check" method="post"> can't work
    <form actionj_acegi_security_check" method="post"> can work

    use tomcat

Similar Threads

  1. Replies: 5
    Last Post: Jul 26th, 2005, 08:47 PM
  2. Replies: 1
    Last Post: Jun 23rd, 2005, 03:32 PM
  3. Replies: 1
    Last Post: Apr 27th, 2005, 04:42 PM
  4. Strange Data Access Error
    By webifyit in forum Data
    Replies: 2
    Last Post: Dec 28th, 2004, 11:06 AM
  5. Problem integrating spring with quartz
    By viniciusboson in forum Container
    Replies: 7
    Last Post: Nov 25th, 2004, 04:21 AM

Posting Permissions

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