On Sun, Apr 13, 2008 at 2:28 PM, kace <[EMAIL PROTECTED]> wrote: > > Changing the security.xml to <property name="filterProcessesUrl" > value="/j_acegi_security_check.html"/> gives same problem. > > the following setup gives the same error message > faces.cong... > <navigation-rule> > <from-view-id>/login.xhtml</from-view-id> > <navigation-case> > <from-outcome>login</from-outcome> > <to-view-id>/j_acegi_security_check</to-view-id> > > </navigation-case> > </navigation-rule> > > security.xml ... > <property name="filterProcessesUrl" value="/j_acegi_security_check.html"/> > > the following gives me this url > http://localhost:8084/login.html?loginStatus=1 with loginMessage saying > Login failed. Please verify your credentials and try again > > faces.config.. > <navigation-rule> > <from-view-id>/login.xhtml</from-view-id> > <navigation-case> > <from-outcome>login</from-outcome> > <to-view-id>/j_acegi_security_check</to-view-id> > <redirect /> > </navigation-case> > </navigation-rule> > > security.xml ... > <bean id="authenticationProcessingFilter" > class="org.acegisecurity.ui.webapp.AuthenticationProcessingFilter"> > <property name="authenticationManager" ref="authenticationManager"/> > <property name="authenticationFailureUrl" > value="/login.html?loginStatus=1"/> > <property name="alwaysUseDefaultTargetUrl" value="true"/> > <property name="defaultTargetUrl" value="/home.html"/> > <property name="filterProcessesUrl" value="/j_acegi_security_check"/> > </bean> > > changing it to > faces.config... > <navigation-rule> > <from-view-id>/login.xhtml</from-view-id> > <navigation-case> > <from-outcome>login</from-outcome> > <to-view-id>/j_acegi_security_check.html</to-view-id> > <redirect /> > </navigation-case> > </navigation-rule> > > security.xml ... > <bean id="authenticationProcessingFilter" > class="org.acegisecurity.ui.webapp.AuthenticationProcessingFilter"> > <property name="authenticationManager" ref="authenticationManager"/> > <property name="authenticationFailureUrl" > value="/login.html?loginStatus=1"/> > <property name="alwaysUseDefaultTargetUrl" value="true"/> > <property name="defaultTargetUrl" value="/home.html"/> > <property name="filterProcessesUrl" > value="/j_acegi_security_check.html"/> > </bean> > > gives me this url again http://localhost:8084/login.html?loginStatus=1 with > loginMessage saying Login failed. Please verify your credentials and try > again. > > > Not sure what I can do to figure this out. >
I'm not sure either. I'd suggest you contact Scott and/or try Swoop to verify it works in that project. Matt --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]