0 Replies Latest reply on Mar 1, 2005 4:26 PM by ionel

    j_uri support ?

      Following a thread started on the Security/JAAS forum,
      i'd like to know how to add a valve to a dynamicaly deployed application.

      I tried this :

      public class FormRedirectAuthenticator extends FormAuthenticator {
      
       public boolean authenticate(HttpRequest request, HttpResponse response,
       LoginConfig arg2) throws IOException {
      
       boolean formOk = super.authenticate(request, response, arg2);
      
       if (formOk) {
       System.out.println("Performing changes ...");
       request.setRequestURI("/test-login/secured/index.jsp");
       request.setContextPath("/test-login");
       request.setServletPath("/secured/index.jsp");
       }
      
       return formOk;
       }
      }


      Unfortunatly, I found no way to add it 'dynamicaly' to my exploded .war directory.

      Two questions :
      1/ may this valve worked if I find a way to add it ?
      2/ how to add a Valve on a 'per-dynamic context' ?

      Thanks,
      Ionel