Just talking out of my head because I wasn't aware that the Application must be serialzable as well. The reason why some classes must be serializable is because they must be copied over the network to additional servers in the same cluster environment. If that is not a requirement, e.g. because the information are static or unique for a single server you may assign the class to a transient variable like
private transient BeanFactory factory; Such variable don't get serialized and exchanged over the network. Hope that helps. Please let me know if not. Juergen P.S. May we have that piece of code later on and add it to wicket examples? ------------------------------------------------------- The SF.Net email is sponsored by: Beat the post-holiday blues Get a FREE limited edition SourceForge.net t-shirt from ThinkGeek. It's fun and FREE -- well, almost....http://www.thinkgeek.com/sfshirt _______________________________________________ Wicket-user mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/wicket-user
