Re: non caching dynamic links

2011-10-26 Thread Martin Makundi
This is how I did it: return new WebRequestCycleProcessor() { /** * @see org.apache.wicket.protocol.http.WebRequestCycleProcessor#newRequestCodingStrategy() */ @Override protected IRequestCodingStrategy newRequestCodingStrategy() { return new

non caching dynamic links

2011-10-24 Thread Martin Makundi
Hi! What is the best way to add non caching sugar onto all non-bookmarkable and/or ajax links of a wicket 1.4.x application with standard out-of-the-box url encoding schemes? We are facing some problems with using http caching headers, some browsers completely stop working properly. ** Martin