0 Replies Latest reply on Feb 28, 2011 1:02 PM by scope_talka

    regex-url-pattern property in context-filter

    scope_talka
      Hi guys,
      Does anyone know how to properly use ( regex-url-pattern ) property in seam context-filter? I have 3 servlets but unable to use them all at once. I have tried implementing the pattern this way;

      <web:context-filter regex-url-pattern=".*(/file|/download)"/> : This does not work at all.
      AND
      <web:context-filter regex-url-pattern="/file/.*|/download" /> : This works but when I call the servlet, the seam component within the servlet is not invoked at all thus throwing some errors. Someone please help. Thanks.