Re: File download with Tomcat 4.0.2

2002-06-01 Thread Markus Kirsten
Hi Alex, I think that's actully up to the browser to determinate wheter the browser should display the data, if a helper application should do so or if the user should be prompted to download the file without displaying or executing it. So, in other words, what you need to do is to say on the

AW: tomcat and apache

2002-06-01 Thread franzR
Tomcat is listening on port 8080 and the standard port for HTTP is port 80. If you only call a page like http://ip-address/examples then the webserver looks for a directory called examples. The http-server has no knowledge that the resource is managed by a servlet engine. Therefore you must

Re: Mod JK Directories

2002-06-01 Thread Frederick Aubert
Hi, in server.xml create context named mywebapp Context path=mywebapp docBase=E:/mydirectory/mywebapp debug=0 reloadable=true/ Thanks it worked fine. I am now one step further in my deployment. But I am having one more problem. My webapp is quite complex and is using a lot of Java beans and

no notification when incorrect filter class is specified

2002-06-01 Thread tek1
does anyone know which catalina class is responsible for loading the servlet and filter classes specified in the web.xml file? i've noticed that when i start tomcat that tomcat gives no notification when the classes, specified in web.xml (i.e. filter-class or servlet-class), are not valid.

Re: Problem installing Jakarta with IIS on Windows 2k

2002-06-01 Thread rsequeira
You need tools.jar in your classpath. RS [EMAIL PROTECTED] on 05/31/2002 12:33:15 PM To:[EMAIL PROTECTED] cc:[EMAIL PROTECTED], [EMAIL PROTECTED] Subject:Problem installing Jakarta with IIS on Windows 2k I have any problems while installing Tomcat 3.3. As your release

ideal tomcat and apache setup

2002-06-01 Thread Brennan Stehling
I have been learning how to configure Apache and Tomcat for a specific configuration. What I have is mutliple virtual hosts in the Apache configuration for several websites. What I would like to do is reconfigure it so I can place many JSPs on any of these virtual hosts and have them

Redirection dll problem...

2002-06-01 Thread Robert A. Rogerson
I installed Tomcat 4.0.3 and followed the How To directions for redirecting when using IIS. JSP pages are served correctly through Tomcat http://local host:8080/examples/jsp/dates/date.jsp but when I try and serve a simple jsp http://localhost/test.jsp where test.jsp is html head titleWelcome

Re: ideal tomcat and apache setup

2002-06-01 Thread rsequeira
You could use resources across contexts (web applications) by setting the crossContext attribute do the Context element to true in server.xml. This will allow applications in a context to access resources from a library context. Be careful of class loader issues. RS Brennan Stehling [EMAIL

How can I use ConnectionPool

2002-06-01 Thread @Basebeans.com
Subject: How can I use ConnectionPool From: bingo [EMAIL PROTECTED] === hi: I konw tomcat have a connection Pool. How use It. Thanks. bingo -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands, e-mail: mailto:[EMAIL PROTECTED]

Coyote v1.0-rc2 Shows [INFO] msgs at TC 4.0.4.-b3 startup

2002-06-01 Thread Luis
Hello! Just after performing a clean installation of Tomcat 4.0.4-b3 and activating Coyote connector in server.xml, when TC is started there are several [INFO] messages from Coyote shown at the console. I've tried to disable them but it seems it is not possible. Is it possible to not have

Re: Mod JK Directories

2002-06-01 Thread Phillip Morelock
can you send us your @page declaration where you import your classes? and show us the directory listing for WEB-INF/classes fillup On 6/1/02 3:05 AM, Frederick Aubert [EMAIL PROTECTED] wrote: Hi, in server.xml create context named mywebapp Context path=mywebapp

Assistance Please?!?

2002-06-01 Thread joelh
Over the course of two days I have sent in 8 e-mails requesting to be unsubscribed from tomcat-users, and tomcat-dev. However, I still continue to receive list mail. I blocked the address thinking if the e-mail kept getting rejected Apache might remove my address from the list. This is

Re: Assistance Please?!?

2002-06-01 Thread Adrian
It`s generally considered bad form to insult and ask for help in the same message. Adrian - Original Message - From: [EMAIL PROTECTED] To: Tomcat Users List [EMAIL PROTECTED] Sent: Saturday, June 01, 2002 5:21 PM Subject: Assistance Please?!? Over the course of two days I have sent

Re: Assistance Please?!?

2002-06-01 Thread Gary Helmling
You might try looking in the headers of your own message: List-Unsubscribe: mailto:[EMAIL PROTECTED] List-Subscribe: mailto:[EMAIL PROTECTED] List-Help: mailto:[EMAIL PROTECTED] List-Post: mailto:[EMAIL PROTECTED] Simply send an empty message to [EMAIL PROTECTED] --g On Sat, 1 Jun 2002

Re: Assistance Please?!?

2002-06-01 Thread Cara UnLtd
That's a shame Joel. Look at the bottom of this email, or any other one. Micael - Original Message - From: [EMAIL PROTECTED] To: Tomcat Users List [EMAIL PROTECTED] Sent: Saturday, June 01, 2002 2:21 PM Subject: Assistance Please?!? Over the course of two days I have sent in 8 e-mails

Unable to find setter: a problem with custom tag in TC 4.0.4b2

2002-06-01 Thread Vernon Wu
Hi, all, I run into an error message on Tomcat 4.0.4b2 when I use a custom tag in a JSP file. The error message is: /jsp/fullsearchlist/content.jsp(4,0) Unable to find setter method for attribute: numItems The code fragment is the followings: public abstract class ListTag extends

Re: Unable to find setter: a problem with custom tag in TC 4.0.4b2

2002-06-01 Thread Phillip Morelock
I don't know if this is the desired answer, and don't have time to think about the Java language issues here, but a quick fix would be to change: protected int numItems = -1; to private int numItems = -1; Then remove the overrides from Search and FullSearch classes. Then ensure that all

Re: Assistance Please?!?

2002-06-01 Thread joelh
Thanks for the tips everyone, I've already done the blank e-mail thing(8 times) that's my pointwhy isn't it working? Maybe if there was an AOL on my e-mail address you should assume I can't read, however, I are smarter then that. ;-) Joel Hebrink BlackThorn Open Source Technology

RE: Assistance Please?!?

2002-06-01 Thread Trenton D. Adams
It`s generally considered bad form to insult and ask for help in the same message. Adrian No kidding. You might try looking in the headers of your own message: List-Unsubscribe: mailto:[EMAIL PROTECTED] List-Subscribe: mailto:[EMAIL PROTECTED] List-Help: mailto:[EMAIL PROTECTED]

RE: Assistance Please?!?

2002-06-01 Thread Trenton D. Adams
Are you sending the sunsubscribe from the correct email address? Are you getting a request for confirmation email back? -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: June 1, 2002 5:20 PM To: Tomcat Users List Subject: Re: Assistance Please?!? Thanks for

Re: Unable to find setter: a problem with custom tag in TC 4.0.4b2

2002-06-01 Thread Vernon Wu
Thanks very much, Philip for your quick response. You are right. Theoretically, the numItems should be declaimed as a private but not protected attribute. I, however, don't think that is the cause, but why the TC keeps a blind eye on the setter method. The fragment of code is based on

Re: Unable to find setter: a problem with custom tag in TC 4.0.4b2

2002-06-01 Thread Phillip Morelock
Are you just running the pet store example, cold or with your own edits? how old is it? You must be running tomcat 4, right? maybe the example is for 3, although in theory most stuff is backward compatible... Also, it might help of course to see some jsp -- I assume you're already doing

Installing/Configuring Tomcat 3.3.1

2002-06-01 Thread Alexis Michelle Goldstein
Dear all, I am at my wit's end trying to configure Tomcat on my laptop. I've tried tomcat 3.3.1, Tomcat 4.0.3 and now 4.0.1 to no avail, each with their own problems. The closest I've gotten is with 3.3.1, so I'm trying that again. Previously, I'd been able to get the Tomcat server up and

Re: Installing/Configuring Tomcat 3.3.1

2002-06-01 Thread Phillip Morelock
SET JAVA_HOME=C:\JDK1.3.1_03 also: SET TOMCAT_HOME=C:\Where\You\Put\Tomcat and to make it not flash away quickly I think you can start tomcat differently. you probably do startup.bat or startup try tomcat.bat start instead i think (could be wrong, don't have windows). fillup On 6/1/02

Re: Unable to find setter: a problem with custom tag in TC 4.0.4b2

2002-06-01 Thread Vernon Wu
I don't run the PetStore at all, but use a small portion of the framework with a litte modification. I don't observe any compatible problem other than the tag names changed in the new tld file. Here is the jsp file. ~ %@ page contentType='text/html; charset=UTF-8' %

Re: Installing/Configuring Tomcat 3.3.1

2002-06-01 Thread Alexis Michelle Goldstein
I got it, thanks so much! Regards, Alexis On Sat, 1 Jun 2002, Phillip Morelock wrote: SET JAVA_HOME=C:\JDK1.3.1_03 also: SET TOMCAT_HOME=C:\Where\You\Put\Tomcat and to make it not flash away quickly I think you can start tomcat differently. you probably do startup.bat or startup

server.xml tomcat 4.x

2002-06-01 Thread Ron
Hi , Can someone give me some pointers on virtual hosts using tomcat 4.0.4, I had it working fine in 3.x. I'm trying to have a context at each webapp, so if you went to www.blablah.com/index.jsp contained in webapps/blahblah/index.jsp www.fred.com/index.jsp contained in

Tomcat 4.0.3 and IIS

2002-06-01 Thread Antony Suryadinata
Hi, Could someone please help me? I am trying to set up Tomcat 4.0.3 to run with IIS 5 in Windows XP. I have got Tomcat running fine. I have followed the instruction on the website but I always get Internal Server error 500 when I try to open the jsp page through IIS. Any help will be