RES: Creating files dynamically and antiJarLocking

2007-10-30 Thread Milanez, Marcus
List Assunto: Re: Creating files dynamically and antiJarLocking This is likely because Tomcat expects all the resources for a web app to be available at deployment time, rather than randomly appearing during the life of the deployed webapp. Jsps are recompiled when modified, and are compiled

RES: Creating files dynamically and antiJarLocking

2007-10-30 Thread Milanez, Marcus
- De: Hassan Schroeder [mailto:[EMAIL PROTECTED] Enviada em: segunda-feira, 29 de outubro de 2007 16:02 Para: Tomcat Users List Assunto: Re: Creating files dynamically and antiJarLocking On 10/29/07, Konstantin Kolinko [EMAIL PROTECTED] wrote: Jsps are recompiled when modified

RES: Creating files dynamically and antiJarLocking

2007-10-30 Thread Milanez, Marcus
- De: Hassan Schroeder [mailto:[EMAIL PROTECTED] Enviada em: segunda-feira, 29 de outubro de 2007 16:02 Para: Tomcat Users List Assunto: Re: Creating files dynamically and antiJarLocking On 10/29/07, Konstantin Kolinko [EMAIL PROTECTED] wrote: Jsps are recompiled when modified, and are compiled

RES: Creating files dynamically and antiJarLocking

2007-10-30 Thread Milanez, Marcus
: Tomcat Users List Assunto: Re: Creating files dynamically and antiJarLocking This is likely because Tomcat expects all the resources for a web app to be available at deployment time, rather than randomly appearing during the life of the deployed webapp. Jsps are recompiled when modified

RES: Creating files dynamically and antiJarLocking

2007-10-30 Thread Milanez, Marcus
original- De: Konstantin Kolinko [mailto:[EMAIL PROTECTED] Enviada em: segunda-feira, 29 de outubro de 2007 15:52 Para: Tomcat Users List Assunto: Re: Creating files dynamically and antiJarLocking This is likely because Tomcat expects all the resources for a web app to be available at deployment

Re: Creating files dynamically and antiJarLocking

2007-10-30 Thread Hassan Schroeder
On Oct 30, 2007 5:14 AM, Milanez, Marcus [EMAIL PROTECTED] wrote: Are you using antiJARLocking=true and antiResourcesLocking=true in your context.xml file? Whenever I drop new JSP files *without* these options set to false, they work fine, but if I do that when these options are set to true,

Creating files dynamically and antiJarLocking

2007-10-29 Thread Milanez, Marcus
Hi all, In my web project, I dynamically create JSP files in some ocasions. These files are placed under my web application folder and only works well if I don't use antiJarLocking='true' and antiResourcesLocking='true'. In this case, my files are created correctely, but I just can't reach them

Re: Creating files dynamically and antiJarLocking

2007-10-29 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Marcus, Milanez, Marcus wrote: In this case, my files are created correctely, but I just can't reach them using their URLs. This is likely because Tomcat expects all the resources for a web app to be available at deployment time, rather than

Re: Creating files dynamically and antiJarLocking

2007-10-29 Thread Konstantin Kolinko
This is likely because Tomcat expects all the resources for a web app to be available at deployment time, rather than randomly appearing during the life of the deployed webapp. Jsps are recompiled when modified, and are compiled on the first access. Thus I do not see why they cannot appear

Re: Creating files dynamically and antiJarLocking

2007-10-29 Thread Hassan Schroeder
On 10/29/07, Konstantin Kolinko [EMAIL PROTECTED] wrote: Jsps are recompiled when modified, and are compiled on the first access. Thus I do not see why they cannot appear randomly. Absolutely. In my dev environment I'm constantly dropping new JSPs in, and they show up fine. If that weren't