RE: Re: using jsp generated by oracle reports in tomcat

2005-04-28 Thread cknell
It sounds as if you have never tried to use Oracle's tech support, Tim. -- Charles Knell [EMAIL PROTECTED] - email -Original Message- From: Tim Funk [EMAIL PROTECTED] Sent: Thu, 28 Apr 2005 06:17:55 -0400 To: Tomcat Users List tomcat-user@jakarta.apache.org Subject: Re:

Trouble with XSL transforms with JSP

2005-01-27 Thread cknell
I have played with several versions of Tomcat, but now I have decided to study JSP in earnest and I downloaded the latest release two days ago. I have also upgraded my Java installation. The installation went relatively well and Tomcat is running on my machine. I decided to start with

Need help on deploying application

2003-06-23 Thread cknell
I have installed Tomcat on my workstation and I'm able to access the applications supplied with the distribution. I have two Tomcat books and I'm trying to deploy an application from one of them as a tool to learn Tomcat basics. I am unable to get to the application. Below is what I believe to

RE: RE: Need help on deploying application

2003-06-23 Thread cknell
I feel like one of the guys who gets hysterical in an old war movie. His buddy slaps him in the face and he immediately calms down and says, Thanks, I needed that! I found the information I needed in the log files and I'm proceeding from there. Thanks again. -- Charles Knell [EMAIL PROTECTED]

Getting servlet to run

2003-06-23 Thread cknell
Environment: Windows XP, Tomcat 4.1.24, Sun JVM 1.4.1_02-b06 I managed to fix my problem running JSPs in an application directory I created. Now I'm moving on to getting a servlet to run. I have copied and compiled two servlets from different books. One I put in D:\Program Files\Apache

RE: RE: Need help on deploying application

2003-06-23 Thread cknell
Thank you for your reply. This problem has been solved. -- Charles Knell [EMAIL PROTECTED] - email -Original Message- From: [EMAIL PROTECTED] Sent: Mon, 23 Jun 2003 18:55:55 +0200 To: [EMAIL PROTECTED] Subject: RE: Need help on deploying application do you have a proper

RE: RE: Getting servlet to run

2003-06-23 Thread cknell
My book lists this servlet element to be included in the web.xml file in the application root directory. I had already added it, so my the web.xml file for my non-functioning servlet looks like this: ?xml version=1.0 encoding=ISO-8859-1? !DOCTYPE web-app PUBLIC '-//Sun Microsystems,

RE: RE: RE: Getting servlet to run

2003-06-23 Thread cknell
I've read over the archives for relevant messages. This one (http://marc.theaimsgroup.com/?l=tomcat-userm=104327383710262w=2), contains a sample servlet-mapping element for the web.xml file. Based on that, me new (and as yet still un-workable) web.xml file looks like this: ?xml version=1.0

RE: RE: RE: RE: Getting servlet to run

2003-06-23 Thread cknell
O.K., that caused the effect I was looking for. Based on this result, I changed the code in the JSP that called the servlet. I modified the action attribute for the form that calls the servlet. old version: action=servlet/chapter2.login new version: action=chapter2/login Thanks to everyone who