Re: Viewing JSP's compiled code

2010-01-29 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Fred, On 1/29/2010 12:07 PM, fred basset wrote: > What I am trying to do is access a variable from a forEach loop. In > the example below I want to call a java function to do some > calculations on each "p" variable in the loop and output the results

RE: Viewing JSP's compiled code

2010-01-29 Thread Joseph Morgan
If the basic functions are there, you can do something like: And then use: ${result} -Original Message- From: fred basset [mailto:fredbasset1...@gmail.com] Sent: Friday, January 29, 2010 11:47 AM To: Tomcat Users List Subject: Re: Viewing JSP's compiled code Yeah I would do

Re: Viewing JSP's compiled code

2010-01-29 Thread fred basset
inal Message- > From: fred basset [mailto:fredbasset1...@gmail.com] > Sent: Friday, January 29, 2010 11:07 AM > To: Tomcat Users List > Subject: Re: Viewing JSP's compiled code > > Thanks, found it. > > What I am trying to do is access a variable from a forEach loop.  I

RE: Viewing JSP's compiled code

2010-01-29 Thread Joseph Morgan
om: fred basset [mailto:fredbasset1...@gmail.com] Sent: Friday, January 29, 2010 11:07 AM To: Tomcat Users List Subject: Re: Viewing JSP's compiled code Thanks, found it. What I am trying to do is access a variable from a forEach loop. In the example below I want to call a java function to d

Re: Viewing JSP's compiled code

2010-01-29 Thread fred basset
Thanks, found it. What I am trying to do is access a variable from a forEach loop. In the example below I want to call a java function to do some calculations on each "p" variable in the loop and output the results of the calculation in the table. How do I do this?

RE: Viewing JSP's compiled code

2010-01-29 Thread Joseph Morgan
Fred, there is a directory under the tomcat directory called "work". Follow that structure through to the end.. it will be different depending on your apps, but it starts out with "work->Catalina->{host}->{app}->org->apache->jsp", and even more if you have jsp's within sub-directories. You should

RE: Viewing JSP's compiled code

2010-01-29 Thread Caldarale, Charles R
> From: fred basset [mailto:fredbasset1...@gmail.com] > Subject: Viewing JSP's compiled code > > Simple question, how do I keep and view the source code generated when > a JSP is compiled? Look in Tomcat's work directory - several levels deep, organized by webapp name. - Chuck THIS COMMUNICAT