Re: ConcurrentModificationException with Fancybox

2012-11-15 Thread Martin Grigorov
Hi, Do you add white-list patterns to SecurePackageResourceGuard somewhere outside of MyApplication#init() ? The exception says that SecurePackageResourceGuard's patterns list is being modified during the request processing. It should be changed only at application startup. On Thu, Nov 15,

Re: ConcurrentModificationException with Fancybox

2012-11-15 Thread Karl-Heinz Golz
Yes, I do it in getHomePage: public class StartApplication extends WebApplication { @Override public void init() { . . . } @Override public Class? extends Page getHomePage() { IPackageResourceGuard packageResourceGuard =

Re: ConcurrentModificationException with Fancybox

2012-11-15 Thread Martin Grigorov
Yes. There is no need to add it again and again for each request. On Thu, Nov 15, 2012 at 6:11 PM, Karl-Heinz Golz karl-heinz.g...@t-online.de wrote: Yes, I do it in getHomePage: public class StartApplication extends WebApplication { @Override public void init() { . . .

Re: ConcurrentModificationException with Fancybox

2012-11-15 Thread Karl-Heinz Golz
Now it works :)) Thank you very much for your prompt support. Am 15.11.2012 17:15, schrieb Martin Grigorov: Yes. There is no need to add it again and again for each request. On Thu, Nov 15, 2012 at 6:11 PM, Karl-Heinz Golz karl-heinz.g...@t-online.de wrote: Yes, I do it in