0 Replies Latest reply on Apr 15, 2009 5:52 PM by mcohnen

    regegex-url-pattern authentication ... Look Behind negative. How?

      Hi,


      I want to apply an authentication filter to every .seam page but the ones that are under public/ folder. So I need to use a Look Behind. But Look behind requires to use < character, which is forbidden into the components.xml...


      This is one of my tries:


      [^public/].*\.seam


      Using regex in java, this matches home.seam, and does not match /public/answer.seam, but if applied to the authentication filter, none of both seem to match.


      How could I achieve such a thing?