Webapp Directory Root and JSP Include problem.

2004-08-19 Thread Diego, Emil
I solved my previous problem. Thanx for all the assistance. Now I am hitting another snag. When my JSP pages execute I am getting a Exception. org.apache.jasper.JasperException: /index.jsp(24,0) File /includes/inc_setup_edit.jsp not found The jsp pages are stored in /var/www/html/dev_new

Re: Webapp Directory Root and JSP Include problem.

2004-08-19 Thread John Villar
I think you will have to include at least a . (dot) before /includes or you should remove the first backslash. That's a simple find replace Diego, Emil escribi: I solved my previous problem. Thanx for all the assistance. Now I am hitting another snag. When my JSP pages execute I am getting a

RE: Webapp Directory Root and JSP Include problem.

2004-08-19 Thread Diego, Emil
of code change. Emil Diego Website Administrator University of Miami School of Business 305.284.5449 -Original Message- From: John Villar [mailto:[EMAIL PROTECTED] Sent: Thursday, August 19, 2004 10:18 AM To: Tomcat Users List Subject: Re: Webapp Directory Root and JSP Include problem. I

Re: Webapp Directory Root and JSP Include problem.

2004-08-19 Thread John Villar
Administrator University of Miami School of Business 305.284.5449 -Original Message- From: John Villar [mailto:[EMAIL PROTECTED] Sent: Thursday, August 19, 2004 10:18 AM To: Tomcat Users List Subject: Re: Webapp Directory Root and JSP Include problem. I think you will have to include at least

RE: Webapp Directory Root and JSP Include problem.

2004-08-19 Thread Diego, Emil
Diego Website Administrator University of Miami School of Business -Original Message- From: John Villar [mailto:[EMAIL PROTECTED] Sent: Thursday, August 19, 2004 10:35 AM To: Tomcat Users List Subject: Re: Webapp Directory Root and JSP Include problem. Now that i think of it there should

RE: include Problem with Internet Explorer

2004-02-03 Thread Yansheng Lin
I had a similar problem a while back. I think this is a invalid path problem. Mozilla just ignored it, but IE was not as forgiving. Debugging technique: comment out any links one-by-one to see which one is causing the problem. Hope this helps. -Yan -Original Message- From: Daniel

Ideas on solving a jsp include problem

2002-06-26 Thread John Trollinger
I have about 100 jsp pages that represent pieces of a page, and a jsp page that is dynamically build that can include all these pages and include them multiple times (currently our biggest has about 1000 includes) right now we have a hacked version of tomcat that allows us to call the service

Order of execution - JSP/RequestDispatcher include problem

2001-12-05 Thread RSEQUEIRA
Hi, I am facing a problem while using RequestDispatcher to include the contents of a text file. I'm using RequestDispatcher from within a JSP page to include the contents of a text (common content) file. The format of the JSP page is as follows:

jsp include problem

2001-11-19 Thread Sukhwinder Singh
Hello, I am using tomcat 4.01 on Windows 95. I have a simple jsp file and its contents are: / %@ page contentType=text/xml% jsp:include page=portfolio.xml / / and portfolio.xml's contents are:

jsp include problem

2001-11-19 Thread Sukhwinder Singh
Hello, I am using tomcat 4.01 on Windows 95. I have a simple jsp file and its contents are: / %@ page contentType=text/xml% jsp:include page=portfolio.xml / / and portfolio.xml's contents are:

include problem

2001-06-04 Thread Ryan
I am trying to include files using tomcat 3.2, right now I'm testing out my setup with the %@ include file=bleh However, the file value only works when I specify a _relative_ path inside one of the Contexts. How can I make it so that an absolute path will work with any file on my server?

RE: include problem

2001-06-04 Thread Pernica, Jan
only path relative to the your application context root works. On Monday, June 04, 2001 2:20 PM, Ryan [SMTP:[EMAIL PROTECTED]] wrote: I am trying to include files using tomcat 3.2, right now I'm testing out my setup with the %@ include file=bleh However, the file value only works when I

include problem!

2001-03-19 Thread Kishor K
hi, i have the following directory structure root - level1 -level21 -level22 -level23 how can i include a file a.jsp in files b.jsp in level21,c.jsp level22,d.jsp in level 23 this is what i have done %@

include problem

2001-03-19 Thread Kishor K
hi, i have the following directory structure root - level1 -level21 -level22 -level23 i hav a file a.jsp in the level1 directory. how can i include the file a.jsp in files b.jsp in level21, c.jsp

RE: include problem

2001-03-19 Thread Grewal, Gary
Title: RE: include problem instead of ../ just do level21/b.jsp === Gary Grewal Contractor NEC America Phone: 214-262-5911 E-Mail: [EMAIL PROTECTED] -Original Message- From: Kishor K [mailto:[EMAIL PROTECTED]] Sent: Monday, March 19, 2001 3:55 AM To: Tomcat User Mailing List

RE: include problem

2001-03-19 Thread Adam Fowler
web: http://gucciboy.dyndns.org/aff9 e-mail: [EMAIL PROTECTED] "Every new beginning comes from some other beginning's end" -Original Message- From: Kishor K [mailto:[EMAIL PROTECTED]] Sent: Monday, March 19, 2001 3:55 AM To: Tomcat User Mailing List Subject: include problem hi, i have the

Re: include problem

2001-03-19 Thread Kishor K
Title: RE: include problem i want to include a.jsp in b.jsp, c.jsp and d.jsp - Original Message - From: Grewal, Gary To: '[EMAIL PROTECTED]' Sent: Monday, March 19, 2001 9:57 PM Subject: RE: include problem instead of ../ just do level21/b.jsp === Gary

Re: include problem

2001-03-19 Thread John Clark L. Naldoza
Hi, Just try to use the full path name, relative you your server's root... And include the files...;-) Cheers, John Clark -- /) John Clark Naldoza y Lopez (\ / )Software Design Engineer II ( \ _( (__ Web-Application

Puzzling include problem

2001-03-14 Thread Mike Slinn
The following results in Jasper throwing NullPointerException when I try to include a JSP's output into a servlet's output by calling the following routine in the servlet code: void include(String path, HttpServletRequest req, HttpServletResponse res) throws ServletException {

Puzzling include problem

2001-03-14 Thread Mike Slinn
... never mind, I just discovered that if I invoke the servlet in the HTML form as: form method="post" action="/Validator/servlet/com.mslinn.Sequencer" class="formInput" Then I need to get rid of the "/servlet" part of the URL in the servlet's call to my include() method as follows:

Include problem

2001-02-28 Thread Kishor K
hi, i have the following directory structure root - level1 -level21 -level22 -level23 how can i include a file a.jsp in files b.jsp in level21,c.jsp level22,d.jsp in level 23 this is what i have done