I'm new to OpenBD Desktop Server.

The first thing I tried to do was add the URL Rewriter functionality
from http://www.tuckey.org/urlrewrite/ to my simple app, but every
time I try to add the appropriate snippet to web.xml:


        <!-- http://wiki.getrailo.org/wiki/Installation:URLRewriteFilter -->
        <filter>
                <filter-name>UrlRewriteFilter</filter-name>
                
<filter-class>org.tuckey.web.filters.urlrewrite.UrlRewriteFilter</
filter-class>
                <init-param>
                        <param-name>logLevel</param-name>
                        <param-value>WARN</param-value>
                </init-param>
                <init-param>
                        <param-name>confReloadCheckInterval</param-name>
                        <param-value>1</param-value>
                </init-param>
                <init-param>
                        <param-name>confPath</param-name>
                        <param-value>/WEB-INF/urlrewrite.xml</param-value>
                </init-param>
        </filter>
        <filter-mapping>
                <filter-name>UrlRewriteFilter</filter-name>
                <url-pattern>/*</url-pattern>
        </filter-mapping>

it gets overwritten with the default web.xml when I restart the web
app.

Am I missing something?

-- 
official tag/function reference: http://openbd.org/manual/
 mailing list - http://groups.google.com/group/openbd?hl=en

Reply via email to