Re: Strange error with JSP

2021-07-02 Thread Christopher Schultz
Konstantin, On 7/1/21 04:17, Konstantin Kolinko wrote: вт, 29 июн. 2021 г. в 19:35, Christopher Schultz : Konstantin, On 6/29/21 10:21, Konstantin Kolinko wrote: ср, 2 июн. 2021 г. в 23:16, Christopher Schultz : [...] Has the page been compiled once, or its modification time is being

Re: Strange error with JSP

2021-07-01 Thread Konstantin Kolinko
вт, 29 июн. 2021 г. в 19:35, Christopher Schultz : > > Konstantin, > > On 6/29/21 10:21, Konstantin Kolinko wrote: > > ср, 2 июн. 2021 г. в 23:16, Christopher Schultz > > : > [...] > > Has the page been compiled once, or its modification time is being > > checked over and over, or even worse:

Re: Strange error with JSP

2021-06-29 Thread Christopher Schultz
Konstantin, On 6/29/21 10:21, Konstantin Kolinko wrote: ср, 2 июн. 2021 г. в 23:16, Christopher Schultz : All, On 6/2/21 13:52, Christopher Schultz wrote: All, I don't do too much work with JSPs, but I do have a few quick-and-dirty administrative things including one called the "session

Re: Strange error with JSP

2021-06-29 Thread Konstantin Kolinko
ср, 2 июн. 2021 г. в 23:16, Christopher Schultz : > > All, > > On 6/2/21 13:52, Christopher Schultz wrote: > > All, > > > > I don't do too much work with JSPs, but I do have a few quick-and-dirty > > administrative things including one called the "session snooper" which > > just dumps out loads of

RE: Strange error with JSP

2021-06-29 Thread Berneburg, Cris J. - US
Hi Chris Was there a final resolution to this? -- Cris Berneburg CACI Senior Software Engineer -Original Message- From: Christopher Schultz Sent: Wednesday, June 2, 2021 1:52 PM To: Tomcat Users List Subject: Strange error with JSP All, I don't do too much work with JSPs, but I do

RE: Strange error with JSP

2021-06-07 Thread Berneburg, Cris J. - US
Chris [major snippage] CS> app/work/Catalina/localhost/[$context]/org/apache/jsp/admin/ CS> SessionSnooper_jsp.java exist and have file-dates from way back CS> in 2016. (No recent changes) CS> This is Tomcat 8.5.65 from a stock ASF-distrubuted tarball, CS> launched using "catalina.sh start".

RE: Strange error with JSP

2021-06-03 Thread Berneburg, Cris J. - US
Hi Chris cs> This is a relatively simple JSP. There are no tag libraries in use and cs> there are 3 imports of JSPs which contain some static utility functions. Sorry, no technical suggestions, but some questions... Can you load those 3 dependent JSP's in a browser via URL (or are they

Re: Strange error with JSP

2021-06-02 Thread Christopher Schultz
All, On 6/2/21 13:52, Christopher Schultz wrote: All, I don't do too much work with JSPs, but I do have a few quick-and-dirty administrative things including one called the "session snooper" which just dumps out loads of information about the current user's session object. I'm getting

Re: Strange error with JSP

2021-06-02 Thread Christopher Schultz
Tim, On 6/2/21 14:53, Tim Funk wrote: My guess? ClassNotFoundException is rooted in some other exception. Such as a different error is thrown during class initiation. Such as a static { doStuff();} block where doStuff does bad stuff. Hopefully there is more stack trace out there. If the JSP

Re: Strange error with JSP

2021-06-02 Thread Tim Funk
My guess? ClassNotFoundException is rooted in some other exception. Such as a different error is thrown during class initiation. Such as a static { doStuff();} block where doStuff does bad stuff. Hopefully there is more stack trace out there. If the JSP has static initializers - wrap them in try