I am trying to setup Acegi security for my project. I have these following files.
1) good.html -- Protected Resource 2) login.html -- Unprotected Resource login.html is a standard html that has <form action="j_acegi_security_check" method="POST"> When I access good.html , acegi filter redirects it to login.html. Clay filter identifies that it needs to render login.html and renders it. Obiviously when login.html is rendered , clay changes the <form> tag to <form id="clayView:_id0:_id63" method="post" action="/docs/login_acegi.html" enctype="application/x-www-form-urlencoded"> Is there a way I could bypass Clay for login.html alone. Or is there a way to instruct Clay not to change the action for login.html. Rgds, --Siva Jagadeesan