Is DynamicImageResource safe for multiple windows?

2008-08-14 Thread Michel Goldstein
Hi, I have an application that generates different reports based on what the user selects. The report generation page is the same, but the reports vary. Part of the reports contain a DynamicImageResource (JFreeChart chart). Everything works great when a user is looking at a report at a time. But

Re: Is DynamicImageResource safe for multiple windows?

2008-08-14 Thread Michel Goldstein
still seeing the same behavior and the same URLs. Michel On Thu, Aug 14, 2008 at 11:15 AM, Igor Vaynberg [EMAIL PROTECTED]wrote: are all the urls really exactly the same? is your pagesettings.automaticmultiwindowsupport enabled? -igor On Thu, Aug 14, 2008 at 10:30 AM, Michel Goldstein

Re: Is DynamicImageResource safe for multiple windows?

2008-08-14 Thread Michel Goldstein
the wiki be changed to use NonCachingImage or is it supposed to work with Image? I feel like it should, but I probably don't know the internals Wicket enough to make this call. Maybe my code was still missing something else. Thanks, Michel On Thu, Aug 14, 2008 at 12:01 PM, Michel Goldstein [EMAIL

Re: Is DynamicImageResource safe for multiple windows?

2008-08-14 Thread Michel Goldstein
PM, Michel Goldstein [EMAIL PROTECTED] wrote: I read a different thread that is going on right now about preventing image caching by using a NonCachingImage instead Image and seeing that it adds a random reference to the image, I thought it might help on my problem too. And, as far as I can

Re: Is DynamicImageResource safe for multiple windows?

2008-08-14 Thread Michel Goldstein
, Michel Goldstein wrote: Spoke too soon... Unfortunately the problem still seems to be there even after I've added the NonCachingImage. This furthers the confirmation that it's not browser caching issue, but a resource sharing problem. From where does the image data come from, and when? You

Re: Is DynamicImageResource safe for multiple windows?

2008-08-15 Thread Michel Goldstein
the SpringComponentInjector (which I don't think should be the issue, but it's good to mention). Thanks, Michel On Thu, Aug 14, 2008 at 10:26 PM, Michel Goldstein [EMAIL PROTECTED] wrote: As I mentioned, I basically used what was in the twiki about JFreeChart integration. I'll build a simple

Re: Is DynamicImageResource safe for multiple windows?

2008-08-18 Thread Michel Goldstein
versioned and I don't see any problems with shared image resources. Thanks for the help! Michel On Fri, Aug 15, 2008 at 12:08 PM, Michel Goldstein [EMAIL PROTECTED] wrote: Building a sample to show the problem has been harder than I thought. Because on all bare-bones applications that I tried to build