RE: please help! hard returns in TOMCAT what the heck?!

2002-08-13 Thread Jeff Macomber
out.println adds a new line character. try out.print() -Original Message- From: Richard Diaz [mailto:[EMAIL PROTECTED]] Sent: Tuesday, August 13, 2002 12:35 AM To: [EMAIL PROTECTED] Subject: please help! hard returns in TOMCAT what the heck?! the following jsp code: out.println("");

RE: Ant and Javadoc

2002-07-21 Thread Jeff Macomber
Hey Josh, Without your script it is hard to tell but here is the javadoc element from one of my scripts. Hope it helps: Jeff -Original Message- From: Josh [mailto:[EMAIL PROTECTED]] Sent: Monday, July 22, 2002 12:49 AM To: [EMAIL PROTECTED] Subject: Ant and Javadoc Hi, I know this

RE: Admin...

2002-06-07 Thread Jeff Macomber
Dubbs, There is no default user that has access to the manager app. You can add one in the tomcat-user.xml by entering a username and password then setting the role to be manager. Hope this helps, Jeff -Original Message- From: Dubbs [mailto:[EMAIL PROTECTED]] Sent: Friday, June 07, 200

RE: Stdout and Stderr

2002-05-17 Thread Jeff Macomber
Generally these messages are in catalina.out or localhost_log... Jeff -Original Message- From: Wagner Danda [mailto:[EMAIL PROTECTED]] Sent: Thursday, May 16, 2002 7:52 PM To: Tomcat Users List Subject: Stdout and Stderr Hello, in tomcat 4, where can I get the stderr and the stdout?

StackOverflowError

2002-05-15 Thread Jeff Macomber
Hi All, I am having a strange problem with tomcat 4.0.3 LE and JDK 1.4 on RH Linux 7.1. I am running a webapp that uses jsp and beans. One page calls a bean which then loads a couple of classes and calls a method or two. All these classes are local to the webapp (i.e. /WEB-INF/classes tree). T

RE: where javax.sql.*

2002-05-06 Thread Jeff Macomber
in JDK 1.4 it is included with the jdk. In Jdk1.3 it is a separate download for the jdbc extensions. Here is the link: http://java.sun.com/products/jdbc/download.html#spec Jeff -Original Message- From: Gianluca Gravina [mailto:[EMAIL PROTECTED]] Sent: Monday, May 06, 2002 10:22 AM To:

RE: Easy One

2002-05-03 Thread Jeff Macomber
You might checkout the Manager App built into tomcat for this. http://jakarta.apache.org/tomcat/tomcat-4.0-doc/manager-howto.html Good luck! Jeff -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Friday, May 03, 2002 4:44 PM To: [EMAIL PROTECTED] Subject: Easy

RE: Java Execptions

2002-05-03 Thread Jeff Macomber
Dan, You need to set the TOMCAT_HOME as well as the JAVA_HOME. This should point to base directory of tomcat. Hope this helps, Jeff -Original Message- From: Dan Gorman [mailto:[EMAIL PROTECTED]] Sent: Friday, May 03, 2002 4:02 PM To: [EMAIL PROTECTED] Subject: Java Execptions Hi -

RE: getServletContext() error

2002-04-17 Thread Jeff Macomber
Please ignore the previous message I found the problem and it was just a mistake on my side. -Original Message- From: Jeff Macomber [mailto:[EMAIL PROTECTED]] Sent: Wednesday, April 17, 2002 5:39 PM To: 'Tomcat Users List' Subject: getServletContext() error Hi all, I am

getServletContext() error

2002-04-17 Thread Jeff Macomber
Hi all, I am trying to share an object from a servlet to a JSP by using the getServletContext().setAttribute() method in the init() of my servlet. I am able to return the context from the JSP page but am unable to retrieve the attribute (getAttribute() returns null). I have setup the Context i

RE: newbie jsp question

2002-03-19 Thread Jeff Macomber
Jansson, You are going to need a JDBC driver for Interbase 6.5 first. Then I would recommend looking at the examples that come with the driver on how they handle insertion of BLOB data and escaping stored procedures. Hope this helps, Jeff -Original Message- From: Magnus Jansson [mail

RE: Please read Re: Urgent Re: Newbie: Servlet under Windows does not run

2002-03-18 Thread Jeff Macomber
I don't see any previous posting by you containing your web.xml (even though I do see a note or two saying you had posted it before but no web.xml). >From your previous posts it is clear that tomcat is finding your war file and expanding it. Your path appears to be correct from the war file. Is

RE: code!!

2002-02-21 Thread Jeff Macomber
I would change it to : <%page import="java.io.*" %> <%page import="java.lang.*" %> <%page import="java.sql.*" %> and also check that your driver jar file is in the classpath or if you are using tomcat 4.0.X in the common/lib directory. Jeff -Original Message- From: Dimmick, Bill [mailto

RE: cookies problems

2002-01-08 Thread Jeff Macomber
Kyller, I am using 4.0.1 on Linux (RH7.1) with cookies. I add a custom cookie for tracking which server behind the CSS is being accessed and this works fine. I initially had difficulty seeing the cookie on the client side so I ended up dumping the raw request to the console and viewing it. One