I'll give it a try. Thank you very much! Alex.
Matej Knopp-2 wrote: > > This really shouldn't happen. Could you please try adding no-store > Cache-Control header? > e.g. > > override > > protected void setHeaders(WebResponse response) > { > response.setHeader("Pragma", "no-cache"); > response.setHeader("Cache-Control", "no-cache, no-store, > max-age=0, > must-revalidate"); > } > > like this on your page class. Maybe IE is caching wrong DOM tree. > > -Matej > > On Dec 4, 2007 6:28 PM, Alex Objelean <[EMAIL PROTECTED]> wrote: >> >> I can reproduce it only randomly and it seems that this happens in IE >> only. I >> am using wicket-1.3.0-rc1. >> >> >> Regards, >> Alex >> >> >> >> Matej Knopp-2 wrote: >> > >> > Doesn't seem so. Is it reproducable? How does it happen? >> > >> > -Matej >> > >> > On Dec 4, 2007 3:43 PM, Alex Objelean <[EMAIL PROTECTED]> >> wrote: >> >> >> >> >> >> Matej, could the below exception also be caused by regression? >> >> >> >> This is the stack trace: >> >> 03ms server time taken for request >> >> >> app/?wicket:interface=:0:body:panel:leftToSellTab:panel:inventoryButtons:mainForm::IFormSubmitListener:: >> >> response size: 155862 >> >> [16:34:31.408] ERROR [http-8080-Processor6] RequestCycle - component >> >> >> body:panel:leftToSellTab:panel:inventoryList:inventoryLinesDynamic:38:villaTypes:2 >> >> not found on page ro.isdc.centerparcs.dpa.ui.page.DPADashboardPage[id >> = >> >> 0], >> >> listener interface = [RequestListenerInterface name=IBehaviorListener, >> >> method=public abstract void >> >> org.apache.wicket.behavior.IBehaviorListener.onRequest()] >> >> org.apache.wicket.WicketRuntimeException: component >> >> >> body:panel:leftToSellTab:panel:inventoryList:inventoryLinesDynamic:38:villaTypes:2 >> >> not found on page ro.isdc.centerparcs.dpa.ui.page.DPADashboardPage[id >> = >> >> 0], >> >> listener interface = [RequestListenerInterface name=IBehaviorListener, >> >> method=public abstract void >> >> org.apache.wicket.behavior.IBehaviorListener.onRequest()] >> >> at >> >> >> org.apache.wicket.request.AbstractRequestCycleProcessor.resolveListenerInterfaceTarget(AbstractRequestCycleProcessor.java:411) >> >> at >> >> >> org.apache.wicket.request.AbstractRequestCycleProcessor.resolveRenderedPage(AbstractRequestCycleProcessor.java:456) >> >> at >> >> >> org.apache.wicket.protocol.http.WebRequestCycleProcessor.resolve(WebRequestCycleProcessor.java:139) >> >> at org.apache.wicket.RequestCycle.step(RequestCycle.java:1152) >> >> at >> org.apache.wicket.RequestCycle.steps(RequestCycle.java:1248) >> >> at >> org.apache.wicket.RequestCycle.request(RequestCycle.java:489) >> >> at >> >> >> org.apache.wicket.protocol.http.WicketFilter.doGet(WicketFilter.java:343) >> >> at >> >> >> org.apache.wicket.protocol.http.WicketFilter.doFilter(WicketFilter.java:193) >> >> at >> >> >> org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:202) >> >> at >> >> >> org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173) >> >> at >> >> >> org.acegisecurity.util.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:264) >> >> at >> >> >> org.acegisecurity.intercept.web.FilterSecurityInterceptor.invoke(FilterSecurityInterceptor.java:107) >> >> at >> >> >> org.acegisecurity.intercept.web.FilterSecurityInterceptor.doFilter(FilterSecurityInterceptor.java:72) >> >> at >> >> >> org.acegisecurity.util.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:274) >> >> at >> >> >> org.acegisecurity.ui.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:110) >> >> at >> >> >> org.acegisecurity.util.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:274) >> >> at >> >> >> org.acegisecurity.ui.AbstractProcessingFilter.doFilter(AbstractProcessingFilter.java:217) >> >> at >> >> >> org.acegisecurity.util.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:274) >> >> at >> >> >> org.acegisecurity.ui.logout.LogoutFilter.doFilter(LogoutFilter.java:106) >> >> at >> >> >> org.acegisecurity.util.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:274) >> >> at >> >> >> org.acegisecurity.context.HttpSessionContextIntegrationFilter.doFilter(HttpSessionContextIntegrationFilter.java:229) >> >> at >> >> >> org.acegisecurity.util.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:274) >> >> at >> >> >> org.acegisecurity.util.FilterChainProxy.doFilter(FilterChainProxy.java:148) >> >> at >> >> >> org.acegisecurity.util.FilterToBeanProxy.doFilter(FilterToBeanProxy.java:98) >> >> at >> >> >> org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:202) >> >> at >> >> >> org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173) >> >> at >> >> >> org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:213) >> >> at >> >> >> org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:178) >> >> at >> >> >> org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:126) >> >> at >> >> >> org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:105) >> >> at >> >> >> org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:107) >> >> at >> >> >> org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:148) >> >> at >> >> >> org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:856) >> >> at >> >> >> org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.processConnection(Http11Protocol.java:744) >> >> at >> >> >> org.apache.tomcat.util.net.PoolTcpEndpoint.processSocket(PoolTcpEndpoint.java:527) >> >> at >> >> >> org.apache.tomcat.util.net.LeaderFollowerWorkerThread.runIt(LeaderFollowerWorkerThread.java:80) >> >> at >> >> >> org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:684) >> >> at java.lang.Thread.run(Thread.java:595) >> >> >> >> >> >> Thank you! >> >> >> >> Regards, >> >> Alex. >> >> >> >> >> >> Matej Knopp-2 wrote: >> >> > >> >> > Hi, >> >> > >> >> > sorry, it was a regression. Should be fixed in current trunk. >> >> > >> >> > -Matej >> >> > >> >> >> >> -- >> >> View this message in context: >> >> http://www.nabble.com/Ajax-Memory-Leak-in-IE-tf4874611.html#a14151753 >> >> >> >> Sent from the Wicket - User mailing list archive at Nabble.com. >> >> >> >> >> >> --------------------------------------------------------------------- >> >> To unsubscribe, e-mail: [EMAIL PROTECTED] >> >> For additional commands, e-mail: [EMAIL PROTECTED] >> >> >> >> >> > >> > --------------------------------------------------------------------- >> > To unsubscribe, e-mail: [EMAIL PROTECTED] >> > For additional commands, e-mail: [EMAIL PROTECTED] >> > >> > >> > >> >> -- >> View this message in context: >> http://www.nabble.com/Ajax-Memory-Leak-in-IE-tf4874611.html#a14155133 >> >> Sent from the Wicket - User mailing list archive at Nabble.com. >> >> >> --------------------------------------------------------------------- >> To unsubscribe, e-mail: [EMAIL PROTECTED] >> For additional commands, e-mail: [EMAIL PROTECTED] >> >> > > --------------------------------------------------------------------- > To unsubscribe, e-mail: [EMAIL PROTECTED] > For additional commands, e-mail: [EMAIL PROTECTED] > > > -- View this message in context: http://www.nabble.com/Ajax-Memory-Leak-in-IE-tf4874611.html#a14156069 Sent from the Wicket - User mailing list archive at Nabble.com. --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]