Re: Unwanted removal of attribute suffix in Tomcat environment

2008-07-13 Thread Lutz Harder
Hello Thierry,

I have finally managed to get rid of my problem - I am still not entirely sure
why I encountered it in the first place, but anyway:

In the simple demo app, I used to declare the template paths directly as static
strings. In the more complex live app, the paths came from a HashMap - I have
no clue why, but when I changed that and put in the paths as constant values at
compile time, the problem ceased to exist. I am aware that this seems strange
but if someone else encounters a similar problem - who knows, maybe this will 
help.

At any rate - I have said it before, but cannot overemphasize it - thanks a
great deal for your interest and your support in this matter! 

Best regards,
Lutz



Re: Unwanted removal of attribute suffix in Tomcat environment

2008-07-13 Thread Tim Peierls
If the HashMap you were using was shared by multiple threads without
appropriate synchronization, that might explain why you had problems in that
setting but not with constant values.

--tim

On Sun, Jul 13, 2008 at 9:22 AM, Lutz Harder [EMAIL PROTECTED]
wrote:

 Hello Thierry,

 I have finally managed to get rid of my problem - I am still not entirely
 sure
 why I encountered it in the first place, but anyway:

 In the simple demo app, I used to declare the template paths directly as
 static
 strings. In the more complex live app, the paths came from a HashMap - I
 have
 no clue why, but when I changed that and put in the paths as constant
 values at
 compile time, the problem ceased to exist. I am aware that this seems
 strange
 but if someone else encounters a similar problem - who knows, maybe this
 will
 help.

 At any rate - I have said it before, but cannot overemphasize it - thanks a
 great deal for your interest and your support in this matter!

 Best regards,
 Lutz