No, I'm running my application in a development environment, that is tomcat started by Eclipse and I've got just one application. Its web.xml is the following:

<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns="http://java.sun.com/xml/ns/j2ee"; xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"; xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd";
    version="2.4">

<display-name>UgoCert</display-name>

<!--
There are three means to configure Wickets configuration mode and they
        are tested in the order given. 1) A system property:
        -Dwicket.configuration 2) servlet specific <init-param> 3) context
        specific <context-param> The value might be either "development"
(reloading when templates change) or "deployment". If no configuration
        is found, "development" is the default.
    -->


<filter>
<filter-name>charsetEncoding</filter-name>
<filter-class>it.cise.commons.utility.servletFilter.CharacterEncodingFilter</filter-class>
</filter>

<filter>
<filter-name>wicket.UgoCert</filter-name>
<filter-class>org.apache.wicket.protocol.http.WicketFilter</filter-class>
<init-param>
<param-name>applicationClassName</param-name>
<param-value>it.cise.gesagen.portal.WicketApplication</param-value>
</init-param>
<!-- <init-param>
<param-name>configuration</param-name>
<param-value>deployment</param-value>
</init-param> -->
</filter>

<filter-mapping>
<filter-name>charsetEncoding</filter-name>
<url-pattern>/*</url-pattern>
</filter-mapping>
<filter-mapping>
<filter-name>wicket.UgoCert</filter-name>
<url-pattern>/*</url-pattern>
</filter-mapping>
<session-config>
<session-timeout>4096</session-timeout>
</session-config>
</web-app>
Andrea,

do you have any other filters which process the request before WicketFilter
?

On Wed, Mar 30, 2011 at 4:34 PM, Andrea Del Bene<adelb...@ciseonweb.it>wrote:



---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org

Reply via email to