Re: Tomcat 7 Parallel Deployment

2013-02-09 Thread ch_pasha
Have the same Problem here with Tomcat 7.0.33 and Tapestry 5.3.6 Is it a tapestry problem or tomcat one? Any comments from devs? -- View this message in context: http://tapestry.1045711.n5.nabble.com/Tomcat-7-Parallel-Deployment-tp5715717p5719909.html Sent from the Tapestry - User mailing list

Re: Updating image inside zone

2012-09-26 Thread ch_pasha
No, I think I solved the problem by adding fake context to the chart component. I think the problem was that browser cached the image with src="someurl" (because the chart is ultimately just an html img. By adding "random" data (our context) to the url we prevent the image from caching (this is

Re: Updating image inside zone

2012-09-26 Thread ch_pasha
Yes I can tml wrote > > ${execution.id} > > > > >chart="chart" > width="850" height="600"/> > java wrote > @InjectComponent > private Zone chartZone; > > @OnEvent(value = "showChart") > Object onShowChart(RestwertExec

Updating image inside zone

2012-09-26 Thread ch_pasha
Hi all, I have an image with dynamic content inside zone component (jfreechart actually). Unfortunately when triggering the zone update image content is never updated - getter method returning streamresponse is called only once when the page is first loaded but never again,when zone is updated. I