RE: executing a windows application through an applet

2002-05-09 Thread Ion Larrañaga
Your msm class extends Applet, as it should, but the start point for an applet (the "main" function) is not "public static void main" as it is for normal applications. An applet is controlled with four methods: public void init() -> The applet was loaded in the browser public void start() -> The

Re: tomcat 4.0 DB connection pooling (using JNDI) and Oracle DB

2002-05-09 Thread Valera Molyakov
I completely agree with Nikola ! After numerous attempts I too could not receive pooled connection through tyrex. It not supports JDBC 2.0 API for connection pooling !!! :( -- To unsubscribe, e-mail: For additional commands, e-mail:

Re: HELP needed!! About pooling support in tomcat

2002-05-09 Thread Valera Molyakov
Hi ! JDBC driver that supports 2.0 extended API is not connections pool. You must create your own connection pool using this API(see docs). For obtain DataSource connection Tomcat use tyrex, but tyrex not support connection pooling. I obtain ConnectionPoolDataSource in Tomcat(driver - Jconnect5.

executing a windows application through an applet

2002-05-09 Thread yilmaz
Hi all, i am having a strange result, could you please help me explain what is going on? My environment is as follows : tomcat 4.0.1 windows 2000 jdk1.3.1 I am trying to write a jsp file that includes an applet. This applet , using Runtime.getRuntime.exec() method, will start the MSN Messenger. My

Re: Connection pooling using multiple databases ...

2002-05-09 Thread Valera Molyakov
No. This configuration allows you lookup your DataSource as resource. (see tyrex). -- To unsubscribe, e-mail: For additional commands, e-mail:

Re: mod_jk setup

2002-05-09 Thread KL OOI
Apache 1.3.24 - Original Message - From: "Michael Leditschke" <[EMAIL PROTECTED]> To: "Tomcat Users List" <[EMAIL PROTECTED]> Sent: Friday, May 10, 2002 12:58 PM Subject: RE: mod_jk setup > What version of Apache? > > > -Original Message- > > From: KL OOI [mailto:[EMAIL PROTECTE

RE: mod_jk setup

2002-05-09 Thread Michael Leditschke
What version of Apache? > -Original Message- > From: KL OOI [mailto:[EMAIL PROTECTED]] > Sent: Friday, 10 May 2002 1:11 PM > To: TOMCAT-USER > Subject: mod_jk setup > > > Hi all, > > Can anyone provide a clear step by step that how to setup Apache > and Tomcat 4.0.3 with mod_jk in Win

tomcat 4.0.* DB connection pool gocha's

2002-05-09 Thread Romen Law
ello,   As many people mentioned, there is a lot of confusion about databse connection pooling in tomcat 4. I spent some time trying all sorts of combinations (tyrex, dbcp, etc.) to get connection pooling working because there is little documentation on this topic and the products it uses. I

mod_jk setup

2002-05-09 Thread KL OOI
Hi all, Can anyone provide a clear step by step that how to setup Apache and Tomcat 4.0.3 with mod_jk in Windows 2000 Pro? I have go thorough the documentation by I am lost and unsuccessful. Thanks. Regards KL

RE: subclass constructor class

2002-05-09 Thread HOOI Tak Keong, Henry
Hi Adam, Your problem seems to be more of a Java API based question. Based on the code you have written, may I ask what are you trying to achieve by writing the code of [super("/")]? Based on the common concepts of creation of objects you may best replace that line with a call to [super()]th

context

2002-05-09 Thread Mattias Brändström
Hello! I am having problems with my Context. Below are snippets from my httpd.conf and server.xml files: -- httpd.conf -- ServerName www.matlaget.org DocumentRoot /var/www/matlaget WebAppDeploy . conn /tom -- server.xml --

Re: new thread for Jeffrey Caswell

2002-05-09 Thread Jeff Hoare
Hi, mod_jk and mod_webapp are 2 different connectors. So you shouldn't have any directives for mod_webapp unless you are using this connector. I followed the instructions that Gianluca provided (adopted for linux) and they work for me. I've added some comments to the instructions below in case

RE: Please help someone!

2002-05-09 Thread Galbayar
send me your jsp file -Original Message- From: Collins, Jim [mailto:[EMAIL PROTECTED]] Sent: Thursday, May 09, 2002 11:04 PM To: 'Tomcat Users List' Subject: Please help someone! Does anyone know if this is a bug? I have several JSP's running without a problem. When I try and load one p

RE: Problems serving PDF to Netscape browsers

2002-05-09 Thread Tomasz . Ciolek
I would bet uit has to do with the way the PDF plugin intergares with netscape. Nows your netscape have an applicayion/pdf mapping in its mime type or a plug-in it recongises for the PDF? -- Tomasz M. Ciolek Systems Administrator - CSIRO Entomology Phone: 02-62464391 * Fax: 02-62464000 > -

tomcat 4 logger does not work for me!

2002-05-09 Thread sachin chaudhari
Hi I added a logger to my context & in my servlet I added log("my string") But I don't get the log file at all. What am I doing wrong? The code does compile so it means its finding the class for log() method. Do I need to copy any jar file so that log() method of FileLogger class is called?

Strange jsp name mapping problem in 3.3.1 on win2k

2002-05-09 Thread Galbraith, Paul
I'm some strange problem with Tomcat 3.3.1 on Windows 2000. I have a page called "Login.jsp" in my application. When I try to map to the page "http://app/Login.jsp"; I get a 404 error. If I rename the physical file to "login.jsp" (i.e. change the first letter to lower case), my URL reference "h

4.0.2 and LifecyleListener seems to break classloader

2002-05-09 Thread steve_olson
We've recently tried to do our first LifecycleListener usage as part of a small project to integrate Poolman 2.1 with Tomcat 4 so that Poolman properly starts and stops when the container does, and provides JDBC DataSource objects as resources defineable in server.xml and web.xml files. (We happen

Re: Postgres JDBCRealms : Tomcat-4.0.1

2002-05-09 Thread James Williamson
Grant, The stack trace tells you exactly what's going wrong, you need to relax the security regarding opening sockets. Modify the catalina.policy file in your conf directory. Regards, James Williamson www.nameonthe.net UK Tomcat Hosting - Original Message - From: Grant Edwards <[EMAIL

RE: Loading a connection pool class on tomcat startup

2002-05-09 Thread Soomar, Muki (R.)
Thanks fillup. Appreciate your response. Will this not limit the usage of my connection pool only to that servlet ? What if my application has 10 servlets that act as controllers who could just request a connection obj from the pool and after performing their actions return it back to the pool.

Re: Best practices for deployment?

2002-05-09 Thread Craig R. McClanahan
On Thu, 9 May 2002, Sean LeBlanc wrote: > Date: Thu, 9 May 2002 15:22:44 -0600 > From: Sean LeBlanc <[EMAIL PROTECTED]> > Reply-To: Tomcat Users List <[EMAIL PROTECTED]>, [EMAIL PROTECTED] > To: [EMAIL PROTECTED] > Subject: Best practices for deployment? > > I'm trying to figure out the best wa

Re: Loading a connection pool class on tomcat startup

2002-05-09 Thread Phillip Morelock
Make a http servlet. Override the "init()" method. Do your setup inside "init". In your web-xml, in that servlet's definition, make a load-on-startup tag to see examples, search google for load-on-startup web.xml cheers fillup On 5/9/02 1:46 PM, "Soomar, Muki (R.)" <[EMAIL PROTECTED]> wrot

Re: Best practices for deployment?

2002-05-09 Thread Jeff Larsen
I pack it up in a war file, ftp it to the server (UNIX), create an "at" job for late at night which runs a script that stops tomcat, unpacks the war file and restarts tomcat. I've had spotty results with reloading a newly unpacked app while tomcat is still running. Jeff - Original Message -

Re: Problems serving PDF to Netscape browsers

2002-05-09 Thread Jeff Larsen
The content type header is correctly set to "application/pdf". I even tested with a UNIX command line utility called webgrab which dumps the entire server response (including headers) to stdout. I can't find anything wrong with the server output. And yes, I tried it on another box to make sure

Best practices for deployment?

2002-05-09 Thread Sean LeBlanc
I'm trying to figure out the best way to deploy an application...I see the manager application has a way to deploy the application, but the war file or tree has to be on the server deployed to, correct? What do you guys do in testing and/or production environments? Make a tarball and scp or ftp

RE: Problems serving PDF to Netscape browsers

2002-05-09 Thread Andy Eastham
Jeff, Do you know that the correct mime type is being sent back to the browser? If there is no known mime type, I believe that IE makes guesses about what program to launch a file with based on its extension, but NS 4 doesn't seem to do this. If you haven't solved it yet, check the mime type bei

RE: new thread for Jeffrey Caswell

2002-05-09 Thread Caswell, Jeffrey non Unisys
What two connectors? -Original Message- From: Caswell, Jeffrey non Unisys [mailto:[EMAIL PROTECTED]] Sent: Thursday, May 09, 2002 4:41 PM To: 'Tomcat Users List' Subject: RE: new thread for Jeffrey Caswell Do you mean I can't use the warp connector and the ajp1.3 connector together? --

Postgres JDBCRealms : Tomcat-4.0.1

2002-05-09 Thread Grant Edwards
Hi, I am having a bit of trouble getting my Postgres JDBCRealm correctly configured. If I start up my combined JBoss-2.4.4_Tomcat-4.0.1 stack, I am able to get a connection to the DB and all is ok. Running the following command also works fine : /usr/local/pgsql/bin/psql -h localhost -U userNa

Re: Issue with ssl_expr_scan.c with apache2.0.36 on win2k

2002-05-09 Thread bm
[EMAIL PROTECTED] wrote: > HI > > I am not able to compile the source of 2.0.36 with mod_ssl under win2k > platform > > Here is the error > > ssl_expr_scan.c > lex.ssl_expr_yy.c(1753) : error C2143: syntax error : missing ')' > before 'constant' > > Did any one have any work around for thi

RE: serving CSV file

2002-05-09 Thread Liu, Xiaoyan
sorry. I mean 'cannot'. For a static csv file, it displays as plain text. For a non-static file, the response header type is set as 'application/vnd.ms-excel', the file IS opened in excel , BUT with all columns in a row squeezed in one cell. thank you. -Original Message- From: Liu, Xiao

Re: serving CSV file

2002-05-09 Thread Jeff Larsen
What's your request URL? I do it by using a servlet mapping that ends in ".csv" to fool the browser into thinking it's actually downloading a file. I set the content-type header to "application/csv" which isn't really a universal standard, but if I remember right, the mime mapping you listed w

Issue with ssl_expr_scan.c with apache2.0.36 on win2k

2002-05-09 Thread bm
HI I am not able to compile the source of 2.0.36 with mod_ssl under win2k platform Here is the error ssl_expr_scan.c lex.ssl_expr_yy.c(1753) : error C2143: syntax error : missing ')' before 'constant' Did any one have any work around for this thanks in advance BM -- To unsubscribe, e

Configuring Tomcat Server to act as an SSL Client?

2002-05-09 Thread Lomvardias, Christopher
Hi, I have a non-SSL instance of Tomcat 4 that I want to operate as an http client that sends XML documents to a SSL Server on another server. I have added jsse.jar, jcert.jar, jnet.jar to my classpath, and also modified the java.security file with the following entry (security.provider.3=com.

serving CSV file

2002-05-09 Thread Liu, Xiaoyan
Hi, all, I can seem to make tomcat 4.0.2 serving csv (comma-seperated file) file. The files are open plain text in IE. I added the following mime-mapping to web.xml: csv application/vnd.ms-excel is there anything else needs to change? thank you. Liu

Loading a connection pool class on tomcat startup

2002-05-09 Thread Soomar, Muki (R.)
Hi, I have a conceptual question regarding the usage of the tomcat server. If I want to create a class that will provide me with a DB connection pool that my application would like to use whenever there is a request that requires me to go and fetch data from the data source, how would I load this

RE: new thread for Jeffrey Caswell

2002-05-09 Thread Caswell, Jeffrey non Unisys
Do you mean I can't use the warp connector and the ajp1.3 connector together? -Original Message- From: Caswell, Jeffrey non Unisys [mailto:[EMAIL PROTECTED]] Sent: Thursday, May 09, 2002 4:24 PM To: 'Tomcat Users List' Subject: RE: new thread for Jeffrey Caswell I've looked at every lin

Re: issue with ssl_expr_scan.c on apache2.0.36

2002-05-09 Thread bm
[EMAIL PROTECTED] wrote: > HI > > this is the known bug in the apache2.0.35, so i have been advised to go > the > next release > 2.0.36, now the problem is , > > I am not able to compile the source of 2.0.39 with mod_ssl > > Here is the error > > ssl_expr_scan.c > lex.ssl_expr_yy.c(1753) : erro

Re: Problem in ssl_expr_scan.c file in apache2.0.36

2002-05-09 Thread bm
[EMAIL PROTECTED] wrote: > [EMAIL PROTECTED] wrote: > > > HI > > > > this is the known bug in the apache2.0.35, so i have been advised to go the > > next release > > 2.0.36, now the problem is , > > > > I am not able to compile the source of 2.0.39 with mod_ssl > > > > Here is the error > > > >

Re: Problem in ssl_expr_scan.c file in apache2.0.36

2002-05-09 Thread bm
[EMAIL PROTECTED] wrote: > HI > > this is the known bug in the apache2.0.35, so i have been advised to go the > next release > 2.0.36, now the problem is , > > I am not able to compile the source of 2.0.39 with mod_ssl > > Here is the error > > ssl_expr_scan.c > lex.ssl_expr_yy.c(1753) : error

RE: new thread for Jeffrey Caswell

2002-05-09 Thread Caswell, Jeffrey non Unisys
I put that dll in there and use that config. Please take a look at my files and tell me what I overlooked, if you can spare a few minutes. -Original Message- From: Tim Cronin [mailto:[EMAIL PROTECTED]] Sent: Thursday, May 09, 2002 3:50 PM To: 'Tomcat Users List' Subject: RE: new thread f

RE: new thread for Jeffrey Caswell

2002-05-09 Thread Caswell, Jeffrey non Unisys
I've looked at every link in these replies and I am not getting it. Is the problem because I am using a standalone connector and a tomcat-apache connector? Apache won't even start up as soon as I put the LoadModule statement in. Why is that? -Original Message- From: Tim Cronin [mailto:

Re: subclass constructor class

2002-05-09 Thread Adam Pfeiffer
Ah, that makes sense. Thanks for the help! --- Larry Meadors <[EMAIL PROTECTED]> wrote: > They both subclass Object. > > Change > public class PictureBrowserBean { > to > public class PictureBrowserBean extends FileBrowserBean { > > > >>> [EMAIL PROTECTED] 05/09/02 02:12PM >>> > Hello,

Re: getRemoteUser() problem

2002-05-09 Thread Lloyd H. Meinholz
I'm using the WarpConnector and the tomcatAuthentication flag didn't seem to do anything for me. Was is supposed to? Is mod_webapp supposed to support getRemoteUser()? This is a pretty important function for me... Thanks for the pointer, maybe this will force me to try one of the other connectors

RE: new thread for Jeffrey Caswell

2002-05-09 Thread Caswell, Jeffrey non Unisys
I guess no one is going to take the time to go through all this... I understand. Can someone please tell me why I can start Apache with the default httpd.conf file, but as soon as I add the LoadModule jk_module modules/mod_jk.dll, it no longer starts? Nothing in my appended configuration works.

issue with ssl_expr_scan.c on apache2.0.36

2002-05-09 Thread bm
HI this is the known bug in the apache2.0.35, so i have been advised to go the next release 2.0.36, now the problem is , I am not able to compile the source of 2.0.39 with mod_ssl Here is the error ssl_expr_scan.c lex.ssl_expr_yy.c(1753) : error C2143: syntax error : missing ')' before 'const

Re: subclass constructor class

2002-05-09 Thread Larry Meadors
They both subclass Object. Change public class PictureBrowserBean { to public class PictureBrowserBean extends FileBrowserBean { >>> [EMAIL PROTECTED] 05/09/02 02:12PM >>> Hello, superclass is: FileBrowserBean.java subclass is: PictureBrowserBean.java

Re: please help:Apache Tomcat/4.0.3 - HTTP Status 500 - Internal Server Error

2002-05-09 Thread sucharitha madineni
thanx.its working..after i deleted tomcat\bin in classpath and trailing semicolons..thanx for the help. Phillip Morelock <[EMAIL PROTECTED]> wrote: are trailing semicolons necessary? sorry, been a while since i used windows, but i didn't know the traililng semis were required. and the "cla

Problem in ssl_expr_scan.c file in apache2.0.36

2002-05-09 Thread bm
HI this is the known bug in the apache2.0.35, so i have been advised to go the next release 2.0.36, now the problem is , I am not able to compile the source of 2.0.39 with mod_ssl Here is the error ssl_expr_scan.c lex.ssl_expr_yy.c(1753) : error C2143: syntax error : missing ')' before 'consta

subclass constructor class

2002-05-09 Thread Adam Pfeiffer
Hello, superclass is: FileBrowserBean.java subclass is: PictureBrowserBean.java When I try to call the constructor in FileBrowserBean.java from PictureBrowserBean.java I get the following compile time error: PictureBrowserBean.java:10: Object() in java.lang.Object cannot be applied to (java.

Re: WAR files don't unpack if the webapp is already there

2002-05-09 Thread Jeff Larsen
Not sure what you mean by "new ones", but TC 4.0.3 does NOT unpack wars if the directory already exists regardless of the "reloadable" flag. Jeff - Original Message - From: "Rick Fincher" <[EMAIL PROTECTED]> To: "Tomcat Users List" <[EMAIL PROTECTED]> Sent: Thursday, May 09, 2002 2:57 P

Re: Fwd: please help:Apache Tomcat/4.0.3 - HTTP Status 500 - Internal Server Error

2002-05-09 Thread Rick Fincher
You need to set the CATALINA_HOME systemwide by going to the control panel, opening sysem, selecting the "Advanced" tab and clicking "Environment Variables". That's for Win 2000. It's similar, but a little different (if I remember correctly) on other Win versions. You can look it up under help

Re: Tomcat on Win98

2002-05-09 Thread Phillip Morelock
not only that, but98 just can't handle 100 users anyway. it's not a multi-user operating system. it's not made for that. good luck fillup On 5/9/02 1:04 PM, "Wagoner, Mark" <[EMAIL PROTECTED]> wrote: > I doubt Win98 can handle it. I know NT workstation places a limit on 10 > simultaneou

RE: new thread for Jeffrey Caswell

2002-05-09 Thread Tim Cronin
looking at your files your trying to use both connectors the mod_jk is well documented in the link I sent earlier. I used it to setup and I've had no problems -Original Message- From: Caswell, Jeffrey non Unisys [mailto:[EMAIL PROTECTED]] Sent: Thursday, May 09, 2002 1:24 PM To: 'Tomcat

Re: We need a FAQ

2002-05-09 Thread Tulan W. Hu
found one at http://www.jguru.com/faq/Tomcat - Original Message - From: "Rick Fincher" > We need a FAQ for this list. Is there one already somewhere? -- To unsubscribe, e-mail: For additional commands, e-mail:

How to allow only https access to certain directories

2002-05-09 Thread Atul Awate
Hi how do I force to use only https access only for certain directories. Thanks, -Atul. -- To unsubscribe, e-mail: For additional commands, e-mail:

RE: Tomcat on Win98

2002-05-09 Thread Wagoner, Mark
I doubt Win98 can handle it. I know NT workstation places a limit on 10 simultaneous network connections (this is one of the differences between workstation and server). My guess is 98 is the same if not less. -Original Message- From: Marc Chamberlin [mailto:[EMAIL PROTECTED]] Sent: Thu

Re: please help:Apache Tomcat/4.0.3 - HTTP Status 500 - InternalServer Error

2002-05-09 Thread Phillip Morelock
are trailing semicolons necessary? sorry, been a while since i used windows, but i didn't know the traililng semis were required. and the "classpath" one is completely unnecessary. rt.jar and tools.jar will be found if JAVA_HOME is properly set, and tomcat/bin is not a classpath location. let

We need a FAQ

2002-05-09 Thread Rick Fincher
We need a FAQ for this list. Is there one already somewhere? A lot of the questions are answered in the docs, but you have to know where to find them. A FAQ with links to the relevant doc pages would be great. If one doesn't exist, maybe we can make one and just post it to the list once a week

Re: getRemoteUser() problem

2002-05-09 Thread Jacob Kjome
Hello Lloyd, On your tag in Server.xml, you need to have tomcatAuthentication="false". It defaults to true. If true, getRemoteUser() will give you a null value. When false, you will get the remote user from Apache. For example: Jake Thursday, May 09, 2002, 2:43:35 PM, you wrote: LHM> I

Tomcat on Win98

2002-05-09 Thread Marc Chamberlin
Hi, I am running the Tomcat 4.0 server under Win98 and so far I have used it under a light load condition, i.e. only a few users access it at any one time. But, I have recently set up a set of JSP questionaires coupled to a data base, and I am about to be hit by an onslaught of 60 to 100 users

Re: WAR files don't unpack if the webapp is already there

2002-05-09 Thread Rick Fincher
Older versions of Tomcat don't, new ones will if you set "reloadable" to true in the context. It will monitor WEB-ING/lib and WEB-INF/classes for changes and reload if it detects any. This canj cause a performance degradation on your server so you may only want to do this for development. Rick

Re: Fwd: please help:Apache Tomcat/4.0.3 - HTTP Status 500 - Internal Server Error

2002-05-09 Thread sucharitha madineni
version of jdk is 1.3.0_02.and i have set environment variables JAVA_HOME=c:\jdk and CATALINA_HOME=c:\jakarta-tomcat-4.0.. when iam starting server by writing c:\jakarta-tomcat-4.0\bin\startup it says CATALINA_HOME environment variable is not defined correctly.this environment variable is

RE: new thread for Jeffrey Caswell

2002-05-09 Thread Tim Cronin
I sent this to you earlier it's everything on how to setup (the step 2 thread) http://www.acg-gmbh.de/mod_jk/ >Using I was getting that set the modJk attrib in the listener to the location of the mod_jk.dll -Original Message- From: Caswell, Jeffrey non Unisys [mailto:[EMAIL PR

Re: Problems serving PDF to Netscape browsers

2002-05-09 Thread greyson . smith
Have you tried it from a machine other than your own? Just to isolate whether or not there's a problem with your browser. I've served PDFs created with FOP to Netscape 4 browsers using tomcat 3

getRemoteUser() problem

2002-05-09 Thread Lloyd H. Meinholz
I am using Apache 1.3.24 and tomcat 4.0.4 beta2 and mod_webapp (fairly recent code snapshot) on Solaris 8. I am doing Basic Authentication from Apache to a LDAP server. I cannot get the Remote User from HttpServletRequest. I went through the archives and found a workaround by unencoding the Author

RE: choosing where to deploy class files

2002-05-09 Thread Tim Cronin
thanks for your many helpful responses. I got it to work by having my common code in common\classes and my Realm class in server\classes. Then I had to place all the third party libs in the common\lib. (unfortunately our dev env is w2k, no simlinks...) I now see that classes loaded in the child

Re: Problems serving PDF to Netscape browsers

2002-05-09 Thread Jeff Larsen
The iText documentation supplies a workaround for some MSIE problems and I haven't had any trouble with it so far. The fact that Netscape isn't reading STATIC PDF files served by Tomcat makes me think there's something hinky in Tomcat. I'll be certain to post my findings, if there are any! Jeff

RE: Followed jndi-howto but no go

2002-05-09 Thread Whitcomb, Roger
Is it as simple as putting a into your JSP page? Roger Whitcomb Computer Associates Senior Software Engineer Development Phone: +1 408 965 8653 FAX: +1 408 965 8805 [EMAIL PROTECTED] -Original Message- From: Craig R. McClanahan [mailto:[EMAIL PROTECTED]] Se

connecting apache to tomcat

2002-05-09 Thread Peter Choe
i know this probably has been asked and answered many times before, but i did look through the documentation and the mail archive. and unfortunately, i am more lost than when i started. here is my situation: i have one server using apache webserver. and a separate machine using tomcat 4.0.s

Re: WAR files don't unpack if the webapp is already there

2002-05-09 Thread Jeff Larsen
It's a feature. Sucks, huh? - Original Message - From: "James Turner" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday, May 09, 2002 2:23 PM Subject: WAR files don't unpack if the webapp is already there > I'm going through the standard compile->edit->test look on some > app

RE: new thread for Jeffrey Caswell

2002-05-09 Thread Caswell, Jeffrey non Unisys
I am still having problems. Can someone please answer these questions? (using Windows NT 4.0 sp6a, Apache 2.0.35, Tomcat 4.0.3) 1) Gianluca said to put mod_jk.dll under libexec/ folder but the error logs said it should be under modules/. I moved it there, but it still isn't working. I get this

WAR files don't unpack if the webapp is already there

2002-05-09 Thread James Turner
I'm going through the standard compile->edit->test look on some applications using JBuilder and Tomcat right now. I've got JBuilder creating a new WAR file in TOMCAT_HOME/webapps on rebuild, but I need to delete the old webapp directory before Tomcat will notice the new one and unpack it. Is t

Re: List Down?

2002-05-09 Thread Abhi
While you are there, can we have some tips on the stocks to invest in, and horses to bet on, Anthony ? ;-) *grin* Regards, Abhi > Check your system date. Your emails have a timestamp > of Fri. May 10. You are living in the future!! > > --- "Anthony W. Marino" <[EMAIL PROTECTED]> > wrote: > > I

RE: Fwd: please help:Apache Tomcat/4.0.3 - HTTP Status 500 - Internal Server Error

2002-05-09 Thread Caswell, Jeffrey non Unisys
OK, folks, I tried to start a new thread, but I did not get back any confirmation. This is a test. -Original Message- From: Milind Nirgun [mailto:[EMAIL PROTECTED]] Sent: Thursday, May 09, 2002 2:31 PM To: Tomcat Users List Subject: Re: Fwd: please help:Apache Tomcat/4.0.3 - HTTP Status

RE: new thread for Jeffrey Caswell

2002-05-09 Thread Caswell, Jeffrey non Unisys
I am re-sending this because I haven't received anything back... I am still having problems. Can someone please answer these questions? (using Windows NT 4.0 sp6a, Apache 2.0.35, Tomcat 4.0.3) 1) Gianluca said to put mod_jk.dll under libexec/ folder but the error logs said it should be under mo

RE: new thread for Jeffrey Caswell

2002-05-09 Thread Caswell, Jeffrey non Unisys
I am re-sending this because I haven't received anything back... I am still having problems. Can someone please answer these questions? (using Windows NT 4.0 sp6a, Apache 2.0.35, Tomcat 4.0.3) 1) Gianluca said to put mod_jk.dll under libexec/ folder but the error logs said it should be under m

Re: Problems serving PDF to Netscape browsers

2002-05-09 Thread Abhi
Coincidentally ... http://www.lib.washington.edu/help/knownIssues/#ie So better do a check again for IE as well. Don't be too sure that it will work with *all* versions of IE on all flavours of windows. On some, I couldn't see it at all, till we applied the latest critical patch for the concerne

Re: List Down?

2002-05-09 Thread Michael Armstrong
. . . and this time, it's personal! - Original Message - From: "John Wadkin" <[EMAIL PROTECTED]> To: "'Tomcat Users List'" <[EMAIL PROTECTED]> Sent: Thursday, May 09, 2002 10:30 AM Subject: RE: List Down? > ...and self aware, Terminator-style. It chooses which messages to send, a

Getting a reference to a Manager from a filter

2002-05-09 Thread Subir Sengupta
Hi, I'm implementing my own Manager so that I can overwrite createSession() to be able to create my own Sessions. I also want to access this manager from a filter. Does anyone know how to do this? The persistentManagerBase example that comes with Tomcat 4 shows me how to do the first part, ho

Problems serving PDF to Netscape browsers

2002-05-09 Thread Jeff Larsen
I'm running out of hair to pull out here... My ultimate goal is to server dynamically generated PDF documents generated with iText. I've got it working just fine with MSIE. However, I was just getting blank pages with Netscape (and it wasn't even showing the toolbar for Acrobat). With NS6 I could

Re: List Down?

2002-05-09 Thread Milind Nirgun
Check your system date. Your emails have a timestamp of Fri. May 10. You are living in the future!! --- "Anthony W. Marino" <[EMAIL PROTECTED]> wrote: > It looks as though ALL my messages are coming in > with an incorrect date/time > stamp with the exception of those created by me. > I'll post

Re: Fwd: please help:Apache Tomcat/4.0.3 - HTTP Status 500 - Internal Server Error

2002-05-09 Thread Milind Nirgun
What JDK version are you using? You do not need to set the classpath. Just set CATALINA_HOME to "c:\tomcat" if that is your directory. And JAVA_HOME to your jdk directory. -MN --- sucharitha madineni <[EMAIL PROTECTED]> wrote: > > > Note: forwarded message attached. > > > >

RE: choosing where to deploy class files

2002-05-09 Thread Craig R. McClanahan
On Thu, 9 May 2002, Tim Cronin wrote: > Date: Thu, 9 May 2002 12:43:55 -0500 > From: Tim Cronin <[EMAIL PROTECTED]> > Reply-To: Tomcat Users List <[EMAIL PROTECTED]> > To: 'Tomcat Users List' <[EMAIL PROTECTED]> > Subject: RE: choosing where to deploy class files > > > In other words, this pack

RE: starting from jar vs. bat

2002-05-09 Thread Robert Priest
OS Win2k jdk 1.3.1 tomcat path: contains no spaces. -Original Message- From: Phillip Morelock [mailto:[EMAIL PROTECTED]] Sent: Thursday, May 09, 2002 1:57 PM To: Tomcat Users List Subject: Re: starting from jar vs. bat environment? os? are you on windows with a tomcat path that has spa

Re: starting from jar vs. bat

2002-05-09 Thread Phillip Morelock
environment? os? are you on windows with a tomcat path that has spaces in it? or for that matter on any system with tomcat path that has spaces in it? On 5/9/02 10:49 AM, "Robert Priest" <[EMAIL PROTECTED]> wrote: > I am having a problem whenever I start tomcat with the startup script and I

starting from jar vs. bat

2002-05-09 Thread Robert Priest
I am having a problem whenever I start tomcat with the startup script and I wonder if anyone knows anything about this. when I use startup.bat I get : ContextConfig[/slide]: Scanning library JAR files 2002-05-09 13:45:57 ContextConfig[/slide]: tldConfigJar(/WEB-INF/lib/crimson.jar): java.io.IOEx

Re: List Down?

2002-05-09 Thread Anthony W. Marino
Sorry, someone messed with my clock! Anthony > It looks as though ALL my messages are coming in with an incorrect > date/time stamp with the exception of those created by me. I'll post to > kde/kmail list. > > Thanks, > Anthony > > > It looks as though all the messages are showing up with yest

RE: choosing where to deploy class files

2002-05-09 Thread Tim Cronin
> In other words, this package has internal references to Catalina classes? > Yuck ... no. It has nothing to do /w Catalina. The Realm I developed is the only thing that directly references Catalina classes. The package the Realm uses to access the Database is a totally self contained encapsul

Re: List Down?

2002-05-09 Thread peter . brawley
"Anthony W. Marino" wrote: > It looks as though all the messages are showing up with yesterday as a date. > > My message is showing up as being created today, however, your reply shows up > as yesterday (May 09, 2002 10:25 PM). Is this me, you or the list server??? It's now about Thu 9 May 1040

Re: List Down?

2002-05-09 Thread Anthony W. Marino
It looks as though ALL my messages are coming in with an incorrect date/time stamp with the exception of those created by me. I'll post to kde/kmail list. Thanks, Anthony > It looks as though all the messages are showing up with yesterday as a > date. > > My message is showing up as being cre

Re: List Down?

2002-05-09 Thread Anthony W. Marino
It looks as though all the messages are showing up with yesterday as a date. My message is showing up as being created today, however, your reply shows up as yesterday (May 09, 2002 10:25 PM). Is this me, you or the list server??? Anthony > it's up. > > -Original Message- > From: Ant

RE: List Down?

2002-05-09 Thread John Wadkin
...and self aware, Terminator-style. It chooses which messages to send, and which to submit to the ether. It chooses how many copies of a message to send - anything from one to half-a-dozen. It also threatens me on a regular basis with removal from the list because people (who I have no control ov