Re: #INCLUDE question

2003-02-22 Thread Jacob Kjome
You'd save yourself some time if you took about 2 seconds to look at the docs Tomcat provides to see if your question is answered there before posting to this list. http://jakarta.apache.org/tomcat/tomcat-4.1-doc/index.html http://jakarta.apache.org/tomcat/tomcat-4.1-doc/ssi-howto.html Jake At

Re: #INCLUDE question

2003-02-22 Thread Tim Funk
The README that comes with tomcat says how to turn on SSI. -Tim T S wrote: I have Tomcat 4.1.12 installed on WinXP. I am attempting to do an SSI and it appears that the command is not being recognized. Here is the command: The include appears to NOT be occuring and I get no errors when I run t

#INCLUDE question

2003-02-22 Thread T S
I have Tomcat 4.1.12 installed on WinXP. I am attempting to do an SSI and it appears that the command is not being recognized. Here is the command: The include appears to NOT be occuring and I get no errors when I run the html. Do I need to set a setting in Tomcat to "turn SSI on"? If so, what

Re: jsp include question

2002-08-09 Thread Jose Francisco Junior
If you want to redirect the request you have to do it before printing any other thing on the page. Example: it works: ... ... it does not work: ... ... On Fri, 9 Aug 2002 09:38:32 -0700 (PDT) Ashish Kulkarni <[EMAIL PROTECTED]> wrote: >Hi > >I am developing a web application and ca

jsp include question

2002-08-09 Thread Ashish Kulkarni
Hi I am developing a web application and came accross this problem. when in my jsp page i have runtime include and then later in the code when i have response.sendRedirect or request.getRequestDispatcher() to forward the jsp page i get error saying the java.lang.IllegalStateException: Response h

FW: Include question...

2001-05-24 Thread Kyle Burke
hursday, May 24, 2001 5:43 PM To: '[EMAIL PROTECTED]' Subject: FW: Include question... I think you were the target recipient for this > -Original Message- > From: Jann VanOver [SMTP:[EMAIL PROTECTED]] > Sent: Thursday, May 24, 2001 2:37 PM > To: '[EMAIL PROTEC

RE: Include question...

2001-05-24 Thread Jann VanOver
, 2001 12:12 PM To: '[EMAIL PROTECTED]' Subject: RE: Include question... Sure it is...just do this... <% String sPage = "index.jsp"; if (myCondition()) { sPage = "anotherPage.jsp"; } else if (anotherCondition())

RE: Include question...

2001-05-24 Thread Gilles Laborderie
OTECTED]] > Sent: Wednesday, May 23, 2001 1:40 PM > To: Tomcat-Users > Subject: Include question... > > > Is this possible (see )? I have a file that depends on the query > string for display. Can I have include files based on that query string > too? > > If action=edit sho

RE: Include question...

2001-05-24 Thread Joel Kozlow
elps. - Joel Kozlow -Original Message- From: Kyle Burke [mailto:[EMAIL PROTECTED]] Sent: Wednesday, May 23, 2001 10:40 AM To: Tomcat-Users Subject: Include question... Is this possible (see )? I have a file that depends on the query string for display. Can I have include files based

Re: Include question...

2001-05-23 Thread "CN=sascha kolski/O=Dcsimtech"
Hello Kyle, you should check the compiled jsp in the work directory. The coplete path and filename should be in the error message. There you will see, that in this .java file there is a try catch arround your code. And, so it often happened to me, there ist something wron with the opening and

RE: Include question...

2001-05-23 Thread Kyle Burke
.apache.tomcat.util.ThreadPool$ControlRunnable.run(ThreadPool.java:498) at java.lang.Thread.run(Thread.java:484) -Original Message- From: Kyle Burke [mailto:[EMAIL PROTECTED]] Sent: Wednesday, May 23, 2001 1:40 PM To: Tomcat-Users Subject: Include question... Is this possible (see

Include question...

2001-05-23 Thread Kyle Burke
Is this possible (see )? I have a file that depends on the query string for display. Can I have include files based on that query string too? If action=edit show the data in form fields otherwise show it in formatted text. When the files are included vs. when the page is compiled and executed