RE: How to get debug info

2002-06-02 Thread Nicholas Orr
What I mean is say file1.jsp has the following jsp:include page=file2.jsp flush=true / And in file2.jsp I forgot a ';'. When I open file1.jsp I don't get the error that a semi-colon is missing in file2.jsp. What happens is it just has a blank page with nothing on it.

Re: How to get debug info

2002-06-02 Thread Phillip Morelock
Interesting. Maybe this is a bug? Does the jsp specification shed any light on the specified behavior? fillup On 6/2/02 4:14 PM, Nicholas Orr [EMAIL PROTECTED] wrote: What I mean is say file1.jsp has the following jsp:include page=file2.jsp flush=true / And in file2.jsp I forgot a ';'.

RE: How to get debug info

2002-06-02 Thread Nicholas Orr
I thought you may want to have a look at this. Open file1.jsp and when it has loaded you will see there is no following line where file2.jsp is suppose to put a string of text. Now go into file2.jsp and stick a semi-colon at the end of the first line. I think this is a bug, where do you send

RE: How to get debug info

2002-06-02 Thread Chris Campbell
[mailto:[EMAIL PROTECTED]] Sent: Monday, June 03, 2002 8:22 AM To: Tomcat Users List Subject: Re: How to get debug info Interesting. Maybe this is a bug? Does the jsp specification shed any light on the specified behavior? fillup On 6/2/02 4:14 PM, Nicholas Orr [EMAIL PROTECTED

Re: How to get debug info

2002-06-02 Thread Phillip Morelock
: How to get debug info Interesting. Maybe this is a bug? Does the jsp specification shed any light on the specified behavior? fillup On 6/2/02 4:14 PM, Nicholas Orr [EMAIL PROTECTED] wrote: What I mean is say file1.jsp has the following jsp:include page=file2.jsp flush=true

RE: How to get debug info

2002-06-02 Thread Nicholas Orr
Morelock [mailto:[EMAIL PROTECTED]] Sent: Monday, June 03, 2002 8:22 AM To: Tomcat Users List Subject: Re: How to get debug info Interesting. Maybe this is a bug? Does the jsp specification shed any light on the specified behavior? fillup On 6/2/02 4:14 PM, Nicholas Orr [EMAIL

Re: How to get debug info

2002-05-31 Thread Phillip Morelock
Not sure what you're asking in the first part...but... does File2.jsp inherit objects from File1.jsp? No, not exactly. If you want to share some objects, you should have your jsp code put objects into the request scope (it's kind of like the session or application scope setAttribute() and

Re: How to get debug info

2002-05-31 Thread Joe Tomcat
On Thursday 30 May 2002 19:06, you wrote: I have the follwing -- File1.jsp -- % code % html body jsp:inlcude page=File2.jsp flush=true / /body /html How do I get the error info from File2.jsp? And does File2.jsp inherit objects from File1.jsp? File2.jsp will inherit the same

Re: How to get debug info

2002-05-31 Thread William Shulman
Joe Tomcat writes: I'm sure you've heard it all before, but, in general, having lots of code in your jsp pages is considered bad form for many reasons. I find that I can acomplish 100% of what I want to do with well-designed tags, filters and servlets. One thing to do is to have a

How to get debug info

2002-05-30 Thread Nicholas Orr
I have the follwing -- File1.jsp -- % code % html body jsp:inlcude page=File2.jsp flush=true / /body /html How do I get the error info from File2.jsp? And does File2.jsp inherit objects from File1.jsp? ** The information