As with anything its 'weird' because its not understood or undocumented EmbeddedServletOptions has method getJspConfig() which will read the init params http://tomcat.apache.org/tomcat-5.0-doc/jasper/docs/api/org/apache/jasper/EmbeddedServletOptions.html
you can then interrogate the returned JspProperty via JspProperty.findJspProperty() http://tomcat.apache.org/tomcat-5.0-doc/jasper/docs/api/org/apache/jasper/compiler/JspConfig.html Unfortunately the doc is almost nonexistent for both items (your best best is to grab the source to find out whats really going on) M- --------------------------------------------------------------------------- This e-mail message (including attachments, if any) is intended for the use of the individual or entity to which it is addressed and may contain information that is privileged, proprietary , confidential and exempt from disclosure. If you are not the intended recipient, you are notified that any dissemination, distribution or copying of this communication is strictly prohibited. --------------------------------------------------------------------------- Le présent message électronique (y compris les pièces qui y sont annexées, le cas échéant) s'adresse au destinataire indiqué et peut contenir des renseignements de caractère privé ou confidentiel. Si vous n'êtes pas le destinataire de ce document, nous vous signalons qu'il est strictement interdit de le diffuser, de le distribuer ou de le reproduire. ----- Original Message ----- From: "Mon Cab" <[EMAIL PROTECTED]> To: "Tomcat Users List" <users@tomcat.apache.org> Sent: Tuesday, December 26, 2006 1:41 AM Subject: RE: JSP Reload problem (wierd) > > --- Mon Cab <[EMAIL PROTECTED]> wrote: > >> I just added the following to web.xml. >> >> <init-param> >> <param-name>checkInterval</param-name> >> <param-value>1</param-value> >> </init-param> >> <init-param> >> <param-name>development</param-name> >> <param-value>true</param-value> >> </init-param> >> > > But, I'm not getting any change in behaviour. It seems that sometimes > when I edit the jsp and request the page, the jsp recompiles, and > sometimes it doesnt. > > If I rename the Login.jsp to Login1.jsp and request the page three > times, on the third time, tomcat logs a file not found error in the > catalina log. Then when I rename the jsp back to Login.jsp, and > request the page again in IE6, the jsp recompiles, and I get the > updated response. > > > >> >> >> --- "Caldarale, Charles R" <[EMAIL PROTECTED]> wrote: >> >> > > From: Mon Cab [mailto:[EMAIL PROTECTED] >> > > Subject: Re: JSP Reload problem (wierd) >> > > >> > > Also, It looks like Tomcat is already configured to >> > > reload the jsp's. (below is from the server.xml file). >> > >> > The config for jsp handling is in conf/web.xml, not server.xml. >> Look >> > at >> > the various attributes for the jsp servlet, and see if they match >> the >> > behavior you're looking for. In particular, examine the values for >> > checkInterval, modificationTestInterval, and development. (This is >> > for >> > 5.5; 5.0.28 should be similar, but I haven't had a 5.0 level >> > installed >> > for quite some time to verify.) >> > >> > - Chuck >> > >> > >> > THIS COMMUNICATION MAY CONTAIN CONFIDENTIAL AND/OR OTHERWISE >> > PROPRIETARY >> > MATERIAL and is thus for use only by the intended recipient. If you >> > received this in error, please contact the sender and delete the >> > e-mail >> > and its attachments from all computers. >> > >> > >> --------------------------------------------------------------------- >> > To start a new topic, e-mail: users@tomcat.apache.org >> > To unsubscribe, e-mail: [EMAIL PROTECTED] >> > For additional commands, e-mail: [EMAIL PROTECTED] >> > >> > >> >> >> __________________________________________________ >> Do You Yahoo!? >> Tired of spam? Yahoo! Mail has the best spam protection around >> http://mail.yahoo.com >> >> --------------------------------------------------------------------- >> To start a new topic, e-mail: users@tomcat.apache.org >> To unsubscribe, e-mail: [EMAIL PROTECTED] >> For additional commands, e-mail: [EMAIL PROTECTED] >> >> > > > __________________________________________________ > Do You Yahoo!? > Tired of spam? Yahoo! Mail has the best spam protection around > http://mail.yahoo.com > > --------------------------------------------------------------------- > To start a new topic, e-mail: users@tomcat.apache.org > To unsubscribe, e-mail: [EMAIL PROTECTED] > For additional commands, e-mail: [EMAIL PROTECTED] > >