Problems with error handling framework in Tomcat 5.5 (includes workaround)

2005-10-11 Thread Robert Graf-Waczenski
Hi! We have a complex web application with lots of JSPs and a considerable amount of servlets for various purposes. Our app runs in Tomcat 5.5 and among other custom error handling techniques we also used the Servlet API mechanism of placing the following directive in our web.xml: java.l

Re: Tomcat Includes?

2005-02-01 Thread QM
On Tue, Feb 01, 2005 at 09:59:30AM -0600, Curt LeCaptain wrote: : Currently I'm running Tomcat 5 and I am looking to be able to take the : virtual hosts section of my server.xml file and move it to it's own : file, to be included in server.xml. Sounds like you've gotten tunnel vision from digging

Tomcat Includes?

2005-02-01 Thread Curt LeCaptain
Hello everyone, Currently I'm running Tomcat 5 and I am looking to be able to take the virtual hosts section of my server.xml file and move it to it's own file, to be included in server.xml. I've been searching for the last few days on a way to do this, but I'm having no luck. Any help would be

RE: Trouble deploying with manager app when war includes context.xml

2004-10-25 Thread Shapira, Yoav
Context configuration ".xml" file. Yoav Shapira http://www.yoavshapira.com >-Original Message- >From: QM [mailto:[EMAIL PROTECTED] >Sent: Friday, October 22, 2004 7:26 PM >To: Tomcat Users List >Subject: Re: Trouble deploying with manager app when war includes &g

Re: Trouble deploying with manager app when war includes context.xml

2004-10-22 Thread QM
On Fri, Oct 22, 2004 at 04:18:30PM -0500, Robert Rasmussen wrote: : If I take the same war file and try to deploy it using the manager : webapp, the context.xml file in META-INF is ignored. The manager does : expand the war correctly in the webapps directory, and I can manually : move the co

Trouble deploying with manager app when war includes context.xml

2004-10-22 Thread Robert Rasmussen
I have a webapp packaged as a war file. In the war file's /META-INF directory, I have a context.xml file. If I drop this war file into /webapps when autoDeploy is set to "true" for the host, the context.xml file is correctly moved to $CATALINA_HOME/conf/Catalina/localhost/*.xml and my app

includes with JspC

2004-07-15 Thread Flisch, Alan
Does anybody know if there is a way to specify includes and excludes for org.apache.jasper.JspC as an Ant task as below. Cheers, Alan Any opinions expressed in this E-mail may

Re: lost output including a servlet in a JSP which includes a JSP

2004-07-06 Thread Tim Funk
run the servlet and the output from the servlet is deliverd to the browser. But if the called servlet class includes a .JSP then the output of that .JSP is never seen though if debugged it does run OK and produces output. The servlet itself is generated by compiling a .JSP with jspc. What a

Re: lost output including a servlet in a JSP which includes a JSP

2004-07-06 Thread M.Hockings
e("name-of-the-servlet-class"); Servlet s = (Servlet) c.newInstance(); s.init(this.getServletConfig()); s.service(request, response); %> This sorta works. That is, it will load and run the servlet and the output from the servlet is deliverd to the browser. But if the called servlet class incl

Re: lost output including a servlet in a JSP which includes a JSP

2004-07-06 Thread Tim Funk
stance(); s.init(this.getServletConfig()); s.service(request, response); %> This sorta works. That is, it will load and run the servlet and the output from the servlet is deliverd to the browser. But if the called servlet class includes a .JSP then the output of that .JSP is never seen though if deb

Re: lost output including a servlet in a JSP which includes a JSP

2004-07-06 Thread M.Hockings
is, it will load and run the servlet and the output from the servlet is deliverd to the browser. But if the called servlet class includes a .JSP then the output of that .JSP is never seen though if debugged it does run OK and produces output. The servlet itself is generated by compiling a .JSP

Re: lost output including a servlet in a JSP which includes a JSP

2004-07-06 Thread Tim Funk
s.init(this.getServletConfig()); s.service(request, response); %> This sorta works. That is, it will load and run the servlet and the output from the servlet is deliverd to the browser. But if the called servlet class includes a .JSP then the output of that .JSP is never seen though if debugged it

Re: lost output including a servlet in a JSP which includes a JSP

2004-07-06 Thread M.Hockings
That is, it will load and run the servlet and the output from the servlet is deliverd to the browser. But if the called servlet class includes a .JSP then the output of that .JSP is never seen though if debugged it does run OK and produces output. The servlet itself is generated by compil

Re: lost output including a servlet in a JSP which includes a JSP

2004-07-06 Thread Tim Funk
nfig()); s.service(request, response); %> This sorta works. That is, it will load and run the servlet and the output from the servlet is deliverd to the browser. But if the called servlet class includes a .JSP then the output of that .JSP is never seen though if debugged it does run OK and

lost output including a servlet in a JSP which includes a JSP

2004-07-06 Thread M.Hockings
.forName("name-of-the-servlet-class"); Servlet s = (Servlet) c.newInstance(); s.init(this.getServletConfig()); s.service(request, response); %> This sorta works. That is, it will load and run the servlet and the output from the servlet is deliverd to the browser. But if the called ser

Re: scope & order of initialization of variabes & includes

2004-03-02 Thread Marc Hughes
x27;m assuming I'm just misunderstanding how things work. Maybe tomcat starts processing includes before it processes the page or something? Any comments? Thanks -Marc - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: scope & order of initialization of variabes & includes

2004-03-02 Thread Christopher Schultz
Marc, I thought I should get the output: First page: ok Second page: ok I think this is what's happening. (You can probably verify this by looking at the java source code generated by Tomcat from your JSP): When you do a and declare where the bean lives, the translator essentially converts tha

Re: scope & order of initialization of variabes & includes

2004-03-02 Thread Asim Alp
ok Second page: I thought I should get the output: First page: ok Second page: ok I've tried with application & session scope too. I'm assuming I'm just misunderstanding how things work. Maybe tomcat starts processing includes before it processes the p

scope & order of initialization of variabes & includes

2004-03-02 Thread Marc Hughes
I've tried with application & session scope too. I'm assuming I'm just misunderstanding how things work. Maybe tomcat starts processing includes before it processes the page or something? Any comments? Thanks -Marc ---

RE: Security and includes question

2004-02-24 Thread Mike Curwen
irecting *to* a secured resource, you should be authenticated. > -Original Message- > From: John MccLain [mailto:[EMAIL PROTECTED] > Sent: Tuesday, February 24, 2004 11:26 AM > To: Tomcat user list > Subject: Security and includes question > > > IN reading a Tomcat man

Security and includes question

2004-02-24 Thread John MccLain
IN reading a Tomcat manual, I noticed that security constraints are only applied via client interactions with the secured object. I.E., If you redirect from within a secured object to another secured object, the redirection is not authenticated. Is there a way in Tomcat to secure ALL the objects yo

Re: Tomcat 4.x non .jsp suffix for includes?

2003-12-04 Thread Richard Bondi
Thanks to Chris and and Tim Funk for pointing me in the right direction. For the archives, I found that adding the following two lines to %catalina_home%/conf/web.xml did the trick: jnc org.apache.jasper.servlet.JspServlet logVerbosityLevel

Re: Tomcat 4.x non .jsp suffix for includes?

2003-12-04 Thread Rodrigo Ruiz
In fact, I think you could reuse the default "jsp" servlet, and simply add jsp *.jnc to your webapp WEB-INF/web.xml, or $CATALINA_HOME/conf/web.xm, whichever you preferl What I am not sure about is whether the JSP servlet has its name fixed in the JSP specification, or it is lef

Re: Tomcat 4.x non .jsp suffix for includes?

2003-12-03 Thread Tim Funk
Actually I think its much easier. In the local web.xml, I think you can add the mapping for the other extension. -Tim Christopher Schultz wrote: Richard, Does anyone know how to configure tomcat to compile .jnc files in this circumstance? Is there a standard convention for naming jsp include

Re: Tomcat 4.x non .jsp suffix for includes?

2003-12-03 Thread Christopher Schultz
Richard, Does anyone know how to configure tomcat to compile .jnc files in this circumstance? Is there a standard convention for naming jsp include files? Yeah, .jsp :) Seriously, though. Check out CATALINA_HOME/conf/web.xml for how they configure the .jsp file trnaslator/compiler. You could mo

Tomcat 4.x non .jsp suffix for includes?

2003-12-03 Thread Richard Bondi
Dear All, We want to use the suffix .jnc for our jsp include files. However, if we do something like this: The .jnc file is not compiled -- you can see all the jsp directives when you view source in your browser. If you use .jsp, everything works fine. Does anyone know how to config

RE: Servlets / Includes - not working

2003-10-01 Thread Keith O'Brien
> -Original Message- > From: Keith O'Brien [mailto:[EMAIL PROTECTED] > Sent: Friday, September 26, 2003 5:01 PM > To: 'Tomcat Users List' > Subject: Servlets / Includes - not working > > > Hello, > > Current working environment: > Re

Servlets / Includes - not working

2003-09-26 Thread Keith O'Brien
file that came with tomcat so I won't include that. But I'll include server.xml and the important parts of my httpd.conf file. I also attached the mod_jk.log entry for each failure. Hopefully someone can tell me what part of my config I messed up or how to gets servlets and includes wo

SSI includes

2003-08-26 Thread Luke Vanderfluit
Hi, I'm running Java 1.4.2 on RedHat 9 I have enabled SSI in tomcat 4.1.27 SSI directives work, for example: but apparently you can call a servlet from a servlet block. I can't get the block to work, any ideas on what I might be doing wrong kind regards, Luke -- ===

RE: Forward with includes

2003-07-08 Thread Nick Stuart
d put all your logic in a servlet and have the jsp only > display data. > --Angus > > > -Original Message- > > From: Nick Stuart [mailto:[EMAIL PROTECTED] > > Sent: Tuesday, July 08, 2003 12:00 PM > > To: Tomcat Users List > > Subject: Forward with i

RE: Forward with includes

2003-07-08 Thread Angus Mezick
ilto:[EMAIL PROTECTED] > Sent: Tuesday, July 08, 2003 12:00 PM > To: Tomcat Users List > Subject: Forward with includes > > > Quick problem here. When ever I <[EMAIL PROTECTED]> a section of the page and > try to use the tag I get the following null pointer > ex

Forward with includes

2003-07-08 Thread Nick Stuart
Quick problem here. When ever I <[EMAIL PROTECTED]> a section of the page and try to use the tag I get the following null pointer exception: java.lang.NullPointerException at org.apache.jasper.runtime.PageContextImpl.forward(PageContextImpl.java:430) at org.apache.jsp.index_jsp._j

RE: includes

2003-04-04 Thread Hans Wichman
if you change /a/myinclude.jsp the change will not show up in the file including it, unless that file is recompiled. Dynamic includes would use the following syntax: More info available at: http://www.jspinsider.com/reference/jsp/jspincludes.html Steve -Original Message- From: Hans

RE: includes

2003-04-03 Thread Turoff, Steve
le is recompiled. Dynamic includes would use the following syntax: More info available at: http://www.jspinsider.com/reference/jsp/jspincludes.html Steve -Original Message- From: Hans Wichman [mailto:[EMAIL PROTECTED] Sent: Thursday, April 03, 2003 6:02 AM To: [EMAIL PROTECTED] Subjec

includes

2003-04-03 Thread Hans Wichman
Hi, in my webapps directory I have two distinct subtrees, say a/ and b/ of which a/ is protected through tomcat's authorisation mechanism. Only now I can't seem to include any files from subtree a in b, so for example in b/test.jsp I have a line stating : <@% include file="/usr/local/jakarta-t

Re: Possible to have default classes and taglib includes in JSPs?

2003-03-19 Thread Craig R. McClanahan
On Wed, 19 Mar 2003, Gavin, Rick wrote: > Date: Wed, 19 Mar 2003 07:20:55 -0800 > From: "Gavin, Rick" <[EMAIL PROTECTED]> > Reply-To: Tomcat Users List <[EMAIL PROTECTED]> > To: [EMAIL PROTECTED] > Subject: Possible to have default classes and taglib i

RE: Possible to have default classes and taglib includes in JSPs?

2003-03-19 Thread Gavin, Rick
Thanks Tim and Jon Rick -Original Message- From: Jon Wingfield [mailto:[EMAIL PROTECTED] Sent: Wednesday, March 19, 2003 8:09 AM To: Tomcat Users List Subject: Re: Possible to have default classes and taglib includes in JSPs? You can do a static include of a page which has your default

Re: Possible to have default classes and taglib includes in JSPs?

2003-03-19 Thread Jon Wingfield
You can do a static include of a page which has your default imports: <%@ include file="/a_load_of_imports.jsp" %> Tim Funk wrote: No - you have to explicitly import the classes and/or taglibs. -Tim Gavin, Rick wrote: Hi all, Does anyone know if you can include classes and taglibs in all jsp

Re: Possible to have default classes and taglib includes in JSPs?

2003-03-19 Thread Tim Funk
No - you have to explicitly import the classes and/or taglibs. -Tim Gavin, Rick wrote: Hi all, Does anyone know if you can include classes and taglibs in all jsp pages in a webapp by default, instead of having to import and reference them on each page? I didn't see it in the servlet or jsp spe

Possible to have default classes and taglib includes in JSPs?

2003-03-19 Thread Gavin, Rick
Hi all, Does anyone know if you can include classes and taglibs in all jsp pages in a webapp by default, instead of having to import and reference them on each page? I didn't see it in the servlet or jsp spec. Thanks for the help, Rick --

PageContext is released early in page with some includes

2003-02-06 Thread Zabel, Ian
Hello, A quick synopsis of our problem: We are using Tomcat 4.0.6. We have a JSP which includes 8 other JSPs using a jsp:include tag inside of a loop (these includes do _not_ have a flush="" attribute). We call this jsp the container, and the included JSPs components. All of these JS

server.xml external includes

2002-12-23 Thread Gery Kahn
I want to create external xml file w/ Host tags inside and to include it to the Tomcat's server.xml How to do it? -- To unsubscribe, e-mail: For additional commands, e-mail:

BUG/FIX NEEDED: The Jasper2 bug with handling includes/custom tags.

2002-09-11 Thread lds
Hi, While trying to upgrate the tomcat version to 4.1.10 I found the following problem with the Jasper2 jsp compiler. The Jasper's compiler produces the invalid code (that can't be compiled due to the invalid variable declarations) in case there are includes inside some custom

Re: jsp includes in tomcat 4..........

2002-09-06 Thread Raj Mettai
thanks justin, do you know how to do recursive touch on files in multiple directories, because come includes are being used all across the site...thanks again -Raj >>> [EMAIL PROTECTED] 09/06/02 02:27PM >>> Tomcat won't recompile the jsp unless it sees that the

Re: jsp includes in tomcat 4..........

2002-09-06 Thread Tim Funk
when compiling. Justin Ruthenbeck wrote: > > Tomcat won't recompile the jsp unless it sees that the jsp has > changed... and following includes would be quite a bit of overhead to > check every time. If you know precisely which jsp you want to compile, > you can touch the f

Re: jsp includes in tomcat 4..........

2002-09-06 Thread Justin Ruthenbeck
Tomcat won't recompile the jsp unless it sees that the jsp has changed... and following includes would be quite a bit of overhead to check every time. If you know precisely which jsp you want to compile, you can touch the file to change the date on the file... this will cause a reco

jsp includes in tomcat 4..........

2002-09-06 Thread Raj Mettai
Hi All, I am running tomcat4 on solaris8, when I modify an include in a jsp page (ex: header.inc) the tomcat is not recompiling the page, even after restart the changes are not coming up. If I delete .class files from work folder then tomcat will re-compile the page and the changes are visible

Re: Tomcat 4.0.3 and relative path includes.

2002-07-15 Thread Paul landolt
A bug was generated to deal with this info, and a patch was sumbitted for comittment to the source. For those interested, the bug is here: http://nagoya.apache.org/bugzilla/show_bug.cgi?id=10629 Thanks Andrew ...Paul Paul landolt wrote: > After some digging by Andrew, it appears that ther

Re: Tomcat 4.0.3 and relative path includes.

2002-07-09 Thread Paul landolt
After some digging by Andrew, it appears that there may be some issuea with how <@include>'s are performed within a war file rather than with a deployed app. If the application is deployed as a directory (the war file unpacked into a directory) then Jasper has no troubles at all finding "../testd

RE: Tomcat 4.0.3 and relative path includes.

2002-07-08 Thread Andrew Conrad
ot;/" and you cannot go below root. This seems to be consistent with the JSP 1.2 Documentation for and <%@ include %> tags (JSP 2.10.3; JSP 4.4) -Andrew -Original Message- From: Paul landolt [mailto:[EMAIL PROTECTED]] Sent: Monday, July 08, 2002 1:39 PM To: Tomcat U

Re: Tomcat 4.0.3 and relative path includes.

2002-07-08 Thread Paul landolt
est the file from > the base of the current context to see if that has any problems? > > - Andrew > > -Original Message- > From: Paul landolt [mailto:[EMAIL PROTECTED]] > Sent: Monday, July 08, 2002 11:19 AM > To: [EMAIL PROTECTED] > Subject: Tomcat 4.0.3 and

Re: Tomcat 4.0.3 and relative path includes.

2002-07-08 Thread Paul landolt
- > From: Paul landolt [mailto:[EMAIL PROTECTED]] > Sent: Monday, July 08, 2002 11:19 AM > To: [EMAIL PROTECTED] > Subject: Tomcat 4.0.3 and relative path includes. > > Hello All. I am a New poster, so I hope I'm following proper protocol. > > I am having trouble wit

RE: Tomcat 4.0.3 and relative path includes.

2002-07-08 Thread Andrew Conrad
m the base of the current context to see if that has any problems? - Andrew -Original Message- From: Paul landolt [mailto:[EMAIL PROTECTED]] Sent: Monday, July 08, 2002 11:19 AM To: [EMAIL PROTECTED] Subject: Tomcat 4.0.3 and relative path includes. Hello All. I am a New poster, so

Tomcat 4.0.4 and relative path includes.

2002-07-08 Thread Paul landolt
My mistake, that was Tomcat v4.0.4, not v 4.0.3 Paul landolt wrote: > Hello All. I am a New poster, so I hope I'm following proper protocol. > > I am having trouble with relative path @includes in Tomcat 4.0.3. An > include from the same directory is fine, as is an inc

Tomcat 4.0.3 and relative path includes.

2002-07-08 Thread Paul landolt
Hello All. I am a New poster, so I hope I'm following proper protocol. I am having trouble with relative path @includes in Tomcat 4.0.3. An include from the same directory is fine, as is an include from a sub-directory, like so: <%@include file="inc.jsp"%> <%@inc

RE: Tomcat and server side includes

2002-06-26 Thread Reynir Hübner
PROTECTED] > -Original Message- > From: John Rishea [mailto:[EMAIL PROTECTED]] > Sent: 26. júní 2002 17:12 > To: Tomcat User Group > Subject: Tomcat and server side includes > > > Does Tomcat support SSI and shtml? If not, is it possible to > use Apache as > the

Tomcat and server side includes

2002-06-26 Thread John Rishea
Does Tomcat support SSI and shtml? If not, is it possible to use Apache as the shtml front end and still use Tomcat for the servlets that do the ssi work? I'd appreciate any input and/or directions to where I could find out more about this subject, especially an example or two of how to set some

RE: How to list all Threads in the JVM? (Includes suggestion.)

2002-06-05 Thread Janek Bogucki
Hi Yoav, --- "Shapira, Yoav" <[EMAIL PROTECTED]> wrote: > Howdy, > Your basic code snippet worked relatively well. In fact, I liked it > enough to start using it, with a few modifications and enhancements. > I'm attaching a more fully developed class to do some more, e.g. get a > list of all th

Re: How to list all Threads in the JVM? (Includes suggestion.)

2002-06-05 Thread anette mysel
PLEASE REMOVE ME FROM YOUR MAILING LIST. I DO NOT KNOW WHO YOU ARE. THANK YOU... - Original Message - From: "Janek Bogucki" <[EMAIL PROTECTED]> To: "Tomcat Users List" <[EMAIL PROTECTED]> Sent: Wednesday, June 05, 2002 8:21 AM Subject: Re: How to list a

Re: How to list all Threads in the JVM? (Includes suggestion.)

2002-06-05 Thread anette mysel
PLEASE REMOVE ME FROM YOUR MAILING LIST. I DO NOT KNOW WHO YOU ARE. THANK YOU... - Original Message - From: "Shapira, Yoav" <[EMAIL PROTECTED]> To: "Tomcat Users List" <[EMAIL PROTECTED]> Sent: Wednesday, June 05, 2002 9:29 AM Subject: RE: How to list a

RE: How to list all Threads in the JVM? (Includes suggestion.)

2002-06-05 Thread Shapira, Yoav
05, 2002 9:05 AM >To: [EMAIL PROTECTED] >Subject: How to list all Threads in the JVM? (Includes suggestion.) > >Hi, > >We are trying to monitor the set of Threads in the JVM running Tomcat in >order to fix a resource >exhaustion problem we have. (Tomcat and/or our code is i

Re: How to list all Threads in the JVM? (Includes suggestion.)

2002-06-05 Thread Janek Bogucki
--- peter lin <[EMAIL PROTECTED]> wrote: > > use an application like optimizeIt or JProbe to profile the thread > usage. Warning though, don't try running it on a system with less than > 128mb of ram. > > peter Thanks for the links: http://www.sitraka.com/software/jprobe/ http://www.b

Re: How to list all Threads in the JVM? (Includes suggestion.)

2002-06-05 Thread peter lin
use an application like optimizeIt or JProbe to profile the thread usage. Warning though, don't try running it on a system with less than 128mb of ram. peter Janek Bogucki wrote: > > Hi, > > We are trying to monitor the set of Threads in the JVM running Tomcat in order to >fix a resource >

How to list all Threads in the JVM? (Includes suggestion.)

2002-06-05 Thread Janek Bogucki
Hi, We are trying to monitor the set of Threads in the JVM running Tomcat in order to fix a resource exhaustion problem we have. (Tomcat and/or our code is increasing the number of threads until the hard nproc limit in /etc/security/limits.conf for the user is reached. Red Hat Linux 7.2) How

Re: Includes disappearing

2002-04-11 Thread rsequeira
h the Apache/Tomcat connector. RS Marcelo Mathias Lima <[EMAIL PROTECTED]> on 04/11/2002 02:00:54 PM Please respond to "Tomcat Users List" <[EMAIL PROTECTED]> To: Tomcat Users List <[EMAIL PROTECTED]> cc: Subject: Re: Includes disappearing with or without flus

RE: Includes disappearing

2002-04-11 Thread Wagoner, Mark
riginal Message- From: Marcelo Mathias Lima [mailto:[EMAIL PROTECTED]] Sent: Thursday, April 11, 2002 1:37 PM To: Tomcat Users List Subject: Re: Includes desappearing It is not a (my) program error... there is nothing different on the log... It only occurs on Mozilla and in some pages. Only so

Re: Includes desappearing

2002-04-11 Thread Marcelo Mathias Lima
are being thrown. > >RS > > > > > >Marcelo Mathias Lima <[EMAIL PROTECTED]> on 04/11/2002 >07:45:57 AM > >Please respond to "Tomcat Users List" <[EMAIL PROTECTED]> > >To: Tomcat Users List <[EMAIL PROTECTED]> >cc: > >

Re: Includes desappearing

2002-04-11 Thread rsequeira
You should check the logs. Probably some exceptions are being thrown. RS Marcelo Mathias Lima <[EMAIL PROTECTED]> on 04/11/2002 07:45:57 AM Please respond to "Tomcat Users List" <[EMAIL PROTECTED]> To: Tomcat Users List <[EMAIL PROTECTED]> cc: Subject: In

Includes desappearing

2002-04-11 Thread Marcelo Mathias Lima
hi! On my JSP project with Tomcat4/Apache sometimes, in some pages, the page is returned incomplete. They come without the includes, that are other JSPs and without parts of the master JSP. It is not normal and I am worried by this... do somebody can help me?? Thank u in advance, Marcelo

Problem with includes

2002-02-19 Thread Marcelo Mathias Lima
hi! I've Tomcat 4.0/WinME and I'm with problem when I use a include tag like this It generates this error: type Exception report message Internal Server Error description The server encountered an internal error (Internal Server Error) that prevented it from fulfilling this request. exceptio

Re: Includes Tomcat & Apache

2002-01-25 Thread RSEQUEIRA
There are two ways to include files (if you are using both Apache and Tomcat in tandem). If you wish for Apache to handle includes: 1) Make certain the following lines are present (and uncommented) in the httpd.conf LoadModule includes_modulelibexec/mod_include.so AddModule

Includes Tomcat & Apache

2002-01-25 Thread Javier Alonso
Hello everyone. I´m using Apache & Tomcat together, and i want apache to recognize the <--!#include > thing in htm pages. I´ve tried loading the Include Mod and using the include file and teh include relative options. But it doesnt work Could anybody help me? Thanks JJ -- To unsubsc

Re: server side includes of dynamic content not working?

2002-01-08 Thread RSEQUEIRA
"Richard Sand" <[EMAIL PROTECTED]> on 01/07/2002 09:40:31 PM Please respond to "Tomcat Users List" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> cc: Subject: server side includes of dynamic content not working? Hi all- I'm using Tomcat 4.01 o

server side includes of dynamic content not working?

2002-01-07 Thread Richard Sand
Hi all- I'm using Tomcat 4.01 on Win2k and I'm trying to get a server side include to work. I'm using the SSI "include virtual", and what I'm experiencing is that if I include a static file, it works (so I have taken the basic steps to get SSI working on Tomcat), but if I try to include the c

RE: Implementing Interfaces and condidtional includes in JSP

2001-08-27 Thread Brandon Cruz
m: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Monday, August 27, 2001 4:24 PM To: [EMAIL PROTECTED] Subject: Implementing Interfaces and condidtional includes in JSP Can I implement an interface using the jsp page tag? I want to write some custom interfaces, and use them in my JSP code.

Implementing Interfaces and condidtional includes in JSP

2001-08-27 Thread mikejohnson
Can I implement an interface using the jsp page tag? I want to write some custom interfaces, and use them in my JSP code. Also say I have an if then and an include file satement whithin the if then. Now probably the jsp engine will parse all of the included files regardless of the condition

Implementing Interfaces and condidtional includes in JSP

2001-08-27 Thread mikejohnson
Can I implement an interface using the jsp page tag? I want to write some custom interfaces, and use them in my JSP code. Also say I have an if then and an include file satement whithin the if then. Now probably the jsp engine will parse all of the included files regardless of the condition

Re: jsp includes wont show on solaris

2001-06-25 Thread mwhitman
ps when i view source on the page returned the include is there uninterpreted. "<%@ include file="wrappers/head_l1.html" %>" At 11:08 AM 6/25/2001 -0400, you wrote: >The basic .jsp include is not working on a tomcat-apache-solaris platform. >It does work on tomcat-NT-IIS platform and on tomcat-l

jsp includes wont show on solaris

2001-06-25 Thread mwhitman
The basic .jsp include is not working on a tomcat-apache-solaris platform. It does work on tomcat-NT-IIS platform and on tomcat-linux-apache. No errors returned via http. The errors just don't show up. Any ideas why? or how to troubleshoot? <%@ include file="headlines/feature_item.html" %>

Server Side Includes using tags in an .shtml file

2001-06-15 Thread kevin ritter
Hello, I would like to know if Tomcat supports the use of tags in an shtml file for server side includes? Here's my shtml file: timezone! Example of Server-Side Includes This an places the date and time for various time zones dynamically in this .shtml

Server Side Includes using tags in an .shtml file

2001-06-14 Thread kevin ritter
Hello, I would like to know if Tomcat supports the use of tags in an shtml file for server side includes? Here's my shtml file: timezone! Example of Server-Side Includes This an places the date and time for various time zones dynamically in this .shtml

Re: Does Tomcat support Server Side Includes

2001-06-14 Thread Luba Powell
e: Does Tomcat support Server Side Includes > Please excuse my inability to find these tomcat example JSPs. Could you tell > me where they are? > > Again thank you for your help. > > [EMAIL PROTECTED] > > - Original Message - > From: "Michael Jennings&

Re: Does Tomcat support Server Side Includes

2001-06-14 Thread kevin ritter
t;[EMAIL PROTECTED]> Sent: Thursday, June 14, 2001 12:13 PM Subject: Re: Does Tomcat support Server Side Includes > Tomcat is a JSP engine, and the JSP standard has an "include" directive. > Check out the tomcat example JSPs, they show you the source code for >

Re: Does Tomcat support Server Side Includes

2001-06-14 Thread Michael Jennings
: <[EMAIL PROTECTED]> Sent: Thursday, June 14, 2001 9:25 AM Subject: Does Tomcat support Server Side Includes > Hi, I'm new to Tomcat and I'm not having any luck with implementing SSI with > respect to Tomcat. Can anyone tell me does Tomcat support SSI and if so can > you po

Does Tomcat support Server Side Includes

2001-06-14 Thread kevin ritter
Hi, I'm new to Tomcat and I'm not having any luck with implementing SSI with respect to Tomcat. Can anyone tell me does Tomcat support SSI and if so can you point me to existing documentation that describes how-to or provide an example. I have read the Tomcat User's Guide, but did not find any spe

RE: server side includes, tomcat and jsp files

2001-06-07 Thread Jason Koeninger
ache too. > >thanks > >Mick. >> >>Ross, the include format he showed was the common server side include >>format >>that can be used in HTML with many web servers (including both apache and >>IIS) >> >>-Original Message- >>From: Ro

RE: server side includes, tomcat and jsp files

2001-06-07 Thread Mick Lysejko
dnesday, June 06, 2001 5:58 PM >To: [EMAIL PROTECTED] >Subject: RE: server side includes, tomcat and jsp files > > >Where did you get this syntax from? > > >jsp has 2 sorts of includes, compile time and run time. >from the jsp 1.1 spec document: >TABLE 2-1 Summary o

RE: server side includes, tomcat and jsp files

2001-06-07 Thread Jann VanOver
: RE: server side includes, tomcat and jsp files Where did you get this syntax from? jsp has 2 sorts of includes, compile time and run time. from the jsp 1.1 spec document: TABLE 2-1 Summary of Include Mechanisms in JSP 1.1 Syntax What Phase Spec Object Description Section <%@ include f

RE: server side includes, tomcat and jsp files

2001-06-06 Thread Ross Dyson
Where did you get this syntax from? jsp has 2 sorts of includes, compile time and run time. from the jsp 1.1 spec document: TABLE 2-1 Summary of Include Mechanisms in JSP 1.1 Syntax What Phase Spec Object Description Section <%@ include file=... %> directive translation-time virtual

server side includes, tomcat and jsp files

2001-06-06 Thread Mick Lysejko
Hi folks, I have installed apache 1.3.17 and tomcat 1.3.3 and it all works fine. However, I wish to do server side includes in my jsp files and this does not work. eg. I have tried the apache directive: adhandler server-parse .jsp in httpd.conf. Here it stops my jsp pages getting parsed and

RE: Server Side Includes

2001-05-31 Thread Martin van den Bemt
tomcat 4 does. Couldn't find the classes for shtml in tomcat 3, so probably not in there. Mvgr, Martin > -Original Message- > From: Geetha Subramanian [mailto:[EMAIL PROTECTED]] > Sent: Thursday, May 31, 2001 11:04 PM > To: [EMAIL PROTECTED] > Subject: Server Si

RE: Server Side Includes

2001-05-31 Thread Paulo J S Pereira
does. Hope this helps, Paulo -Original Message- From: Geetha Subramanian [mailto:[EMAIL PROTECTED]] Sent: Thursday, May 31, 2001 5:04 PM To: [EMAIL PROTECTED] Subject: Server Side Includes Hi Does tomcat support .shtml files? That is the server side includes. Please clarify.

Server Side Includes

2001-05-31 Thread Geetha Subramanian
Hi Does tomcat support .shtml files? That is the server side includes. Please clarify. Thanks, Geetha __ Do You Yahoo!? Get personalized email addresses from Yahoo! Mail - only $35 a year! http://personal.mail.yahoo.com/

RE: help needed: Server Side Includes

2001-04-19 Thread Darrell Porter
http://www.jspinsider.com/tutorials/jsp/Ray/JSPB_9.html -Original Message-From: Sergej Sander [mailto:[EMAIL PROTECTED]]Sent: Thursday, April 19, 2001 5:53 AMTo: [EMAIL PROTECTED]Subject: help needed: Server Side Includes Hallo!   I am new here, my name is Sergej and I

help needed: Server Side Includes

2001-04-19 Thread Sergej Sander
Hallo!   I am new here, my name is Sergej and I working with web for a couple of years. Now is a time for me to start with tomcat, because it's a part of the software, that we use.   I can't find any word in the documentation or the faq, if it possible to work with the server sid

RE: Server Side Includes (SSI) and Tomcat

2001-02-13 Thread Narayanan
No way make it as a include file . That is the only solution as per the current version of TomCat. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Tuesday, February 13, 2001 11:15 PM To: [EMAIL PROTECTED] Subject: Server Side Includes (SSI) and

Server Side Includes (SSI) and Tomcat

2001-02-13 Thread BBueckers
Is there a way for pages served up by Tomcat to interpret SSI's. For example, I have an entire dir. structure that I secure via FORM based security, thus must be served up by Tomcat. Some files in this directory contain SSI's '' however Tomcat doesn't recognize the SSI include tags. Is there a way

Re: Server Side Includes(SSI) and Tomcat vs JSP Include Directive

2001-02-02 Thread Craig R. McClanahan
ctory. I want Tomcat to be able to serve up the '.shtm' > correctly, which requires it to parse through the '.shtm' files and > acknowledge the SSI include syntax. I don't want to convert all the '.shtm' > pages into '.jsp' files just to use

AW: Server Side Includes(SSI) and Tomcat vs JSP Include Directive

2001-01-31 Thread Kurt, Oliver
I'm acutally no tomcat or jsp guru, but I think you have to use JSP-syntax to include other jsps (or any other files) have a look at the jsp reference @ javasoft.com 1.) Include Directive Includes a static file, parsing the file's <%@ include file=" relativeURL "%>

Server Side Includes(SSI) and Tomcat vs JSP Include Directive

2001-01-31 Thread BBueckers
Does Tomcat have the ability to parse a common SSI like the following on an '.shtm' page. My setup is Tomcat 3.2.1 and IIS 4.0. I have '.shtm' files in a Tomcat url-protected directory. I want Tomcat to be able to serve up the '.shtm' correctly, which requires it to pa

  1   2   >