Page 3 of 3 FirstFirst 123
Results 21 to 21 of 21

Thread: The requested resource (/j_security_check) is not available

  1. #21
    Join Date
    Oct 2007
    Posts
    4

    Default

    can you show your web.xml? do you write in web.xml configs, for example
    Code:
    <login-config>
    		<auth-method>FORM</auth-method>
    		<realm-name>MyFirst Protected Area</realm-name>
    		<form-login-config>
    			<form-login-page>/login.jsp</form-login-page>
    		</form-login-config>
    	</login-config>
    
    
    
    <filter-name>Acegi Authentication Processing Filter</filter-name>
      <filter-class>org.acegisecurity.util.FilterToBeanProxy</filter-class>
      <init-param>
        <param-name>targetClass</param-name>
        <param-value>org.acegisecurity.ui.webapp.AuthenticationProcessingFilter</param-value>
      </init-param>
    </filter>
    
    <filter-mapping>
      <filter-name>Acegi Authentication Processing Filter</filter-name>
      <url-pattern>/*</url-pattern>
    </filter-mapping>
    Last edited by LexeY; Nov 6th, 2007 at 04:38 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
  •