This is my web.xml :
<filter>
<filter-name>wicket</filter-name>
<filter-class>org.apache.wicket.protocol.http.WicketFilter</filter
-class>
<init-param>
<param-name>applicationClassName</param-name>
<param-value>foo.bar.MyApplication</param-value>
</init-param>
<init-param>
<param-name>configuration</param-name>
<param-value>DEVELOPMENT</param-value>
</init-param>
</filter>
<filter-mapping>
<filter-name>wicket</filter-name>
<url-pattern>/app/*</url-pattern>
</filter-mapping>
"/app" is virtual in 1.2.6 , there is no "real" /app directory in my
directory , so I cannot put index.html or any files in the /app directory.
2007/10/2, Martijn Dashorst <[EMAIL PROTECTED]>:
>
> Your web.xml will tell us more.
>
> Do you have mapped your filter to /* or to /app/* ?
>
> And do you have a index.html in your webapp root that redirects to /app ?
>
> Martijn
>