Hi, On Mon, Sep 24, 2012 at 4:00 PM, yesotaso <[email protected]> wrote: > Just tested with 6.0: > > create new project: "mvn archetype:generate > -DarchetypeGroupId=org.apache.wicket > -DarchetypeArtifactId=wicket-archetype-quickstart -DarchetypeVersion=6.0.0 > -DgroupId=com.mycompany -DartifactId=myproject > -DarchetypeRepository=https://repository.apache.org/ > -DinteractiveMode=false" > > open WicketApplication.java and add following lines to init() method: > *setRootRequestMapper(new CryptoMapper(getRootRequestMapper(), this)); > mountPage("/home", HomePage.class);* > > read following from console: > *WARN - WebPageRenderer - The Buffered response should be > handled by BufferedResponseRequestHandler* > > Is it bad practice to have both MountedMapper and CryptoMapper?
No, it is not. With this setup all the mount pages before the registration of the CryptoMapper should have encrypted urls and the one for /home should be not encrypted. Please file a ticket and attach the quickstart. Thanks! > > > > -- > View this message in context: > http://apache-wicket.1842946.n4.nabble.com/Regarding-WARN-WebPageRenderer-java-162-v1-5-7-tp4651245p4652285.html > Sent from the Users forum mailing list archive at Nabble.com. > > --------------------------------------------------------------------- > To unsubscribe, e-mail: [email protected] > For additional commands, e-mail: [email protected] > -- Martin Grigorov jWeekend Training, Consulting, Development http://jWeekend.com --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
