Here an example :

<?xml version="1.0" encoding="utf-8"?>
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";
xmlns="http://java.sun.com/xml/ns/javaee";
xmlns:web="http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd";
xsi:schemaLocation="http://java.sun.com/xml/ns/javaee
http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"; version="2.5">
    <filter>
        <filter-name>*WicketFilter*</filter-name>
        <filter-class>org.apache.wicket.protocol.http.*WicketFilter*
</filter-class>
        <init-param>
            <param-name>applicationClassName</param-name>
            <param-value>nm.mp3rapidshare.WicketApplication</param-value>
        </init-param>
    </filter>


        <filter-mapping>
            <filter-name>*WicketFilter*</filter-name>
            <url-pattern>/*</url-pattern>
        </filter-mapping>
</web-app>

NM


On Fri, Feb 19, 2010 at 3:19 AM, Martin Makundi <
[email protected]> wrote:

> Would you like to ask something or are you just fine?
>
> 2010/2/18 "Matías G. Tito" <[email protected]>:
> > I'm loking for creatting a basic wicket filter for "/"
> >
> > ---------------------------------------------------------------------
> > To unsubscribe, e-mail: [email protected]
> > For additional commands, e-mail: [email protected]
> >
> >
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: [email protected]
> For additional commands, e-mail: [email protected]
>
>

Reply via email to