That's not a bug.

Caused by: java.util.MissingResourceException: Unable to find resource: form.email.TypeValidator
at wicket.Localizer.getString(Localizer.java:147)


means Wicket can't find resource with key 'form.email.TypeValidator'. By default Wicket throws an exception when it can't find a resource, which is usually a good idea when developing. For production, or if you want to postpone filling in the resources, you can set a parameter in your application:

       ApplicationSettings wicketSettings = getSettings();
       wicketSettings.setThrowExceptionOnMissingResource(false);

Eelco


------------------------------------------------------- SF email is sponsored by - The IT Product Guide Read honest & candid reviews on hundreds of IT Products from real users. Discover which products truly live up to the hype. Start reading now. http://ads.osdn.com/?ad_id=6595&alloc_id=14396&op=click _______________________________________________ Wicket-user mailing list Wicket-user@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/wicket-user

Reply via email to