Hi,

yep, JDK 1.5 can be the problem, but don't need to be.

If you use generics, you have to remove them first. The other thing is that 
you must compile your code for JDK 1.4. You need to set the 
Parameter "-source 1.4" to compile the code. 

If the compiler is going through without any error, this should work. Or even 
compile your code with jdk 1.4.2.

Regards,
Timm

Am Monday 22 December 2008 09:16:21 schrieb Pierre Gilquin:
> Thanks Timms,
>
> I developed my app with this version without any problem.
> Now I am trying to change hosting.
> I have developed for JDK 1.5 and my new host is 1.4.2.
> Could this be also a problem ?
>
> Pierre
> My Web.xml
>
> <?xml version="1.0"?>
>
> <web-app xmlns="http://java.sun.com/xml/ns/j2ee";
>
> xmlns:xsi="http://www.w3.org/TR/xmlschema-1/";
>
> xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd";
>
> version="2.4">
>
> <display-name>Pharmaco</display-name>
>
> <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>ch.clinpharm.MyApplication</param-value>
>
> </init-param>
>
> <init-param>
>
> <param-name>configuration</param-name>
>
> <param-value>deployment</param-value>
>
> </init-param>
>
> <init-param>
>
> <param-name>mailAdm</param-name>
>
> <param-value>a...@bidon.ch</param-value>
>
> </init-param>
>
> </filter>
>
> <filter-mapping>
>
> <filter-name>WicketFilter</filter-name>
>
> <url-pattern>/*</url-pattern>
>
> </filter-mapping>
>
> </web-app>



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

Reply via email to