RE: stopping all the java threads when tomcat stops

2004-08-12 Thread Jignesh Patel
Yoav, Thank you, we tried to stop using scheduler.shutdown method in quartz servlet's destroy method but it is not working as expected. Also I would like to clarify one more doubt when load-on-startup method called will it call init method of the servlet all the time.ie. Even when tomcat remove

RE: Apache 1.3.29 + Tomcat 5 ...IMPOSIBLE!!!

2004-08-12 Thread César Martínez Cabanas
But the real problem is the versions no the combination between tomcat a apache I install tomcat 4 and apache 1.3.x - and tomcat 3... and tomcat 4 and apache 2... but tomcat 5 - and apache 1.3.29. I had a problem with ajp13Connector appear in the tomcat 5's API but no

Debugging Tomcat

2004-08-12 Thread Allistair Crossley
Hi Guys, I have two questions relating to debugging TC tht I hope you can help with; 1) Everywhere in the documentation on Tomcat and in the comments for server.xml, when the debug attribute is discussed, it will always say a higher number means more output. I find this statement reasonably

Re: SOLVED: How to get the context path for a web application?

2004-08-12 Thread Endre Stølsvik
On Wed, 11 Aug 2004, David Wall wrote: | The cause for some of these specs is the fact servlet containers aren't | required to run on file systems. For example, they may run entirely | inside a DBMS (and Oracle had such a container for a while), in which | case you must deploy in a packed

Another class error

2004-08-12 Thread David Short
Hello, Does anyone know why I'm getting the following error in the stdout.log? [INFO] Catalina - -Server startup in 3626 ms [ERROR] Catalina - -Catalina.stop LifecycleException: Cannot find message associated with key coyoteConnector.protocolHandlerPauseFailedLifecycleException: Cannot find

Re: Memory Usage - Tomcat 5.0.25

2004-08-12 Thread teknokrat
Nandish Rudra wrote: Hello Everyone, I am writing about this error from yesterday. I used JProfiler to monitor my memory usage. And am now sure that each and every static object is trashed when the application is undeployed and the profiler shows that memory is free and all instance of the objects

New Service Problem

2004-08-12 Thread Peter Huesser
Hello I wanted to create a new Service on my tomcatserver (5.0.25). I did it using the webinterface. For the host within this service I used a new ApplicationBase. I also copied the ROOT stuff to this new service applicationbase. If I connect now to the service I get the usual page from where

server.xml and $

2004-08-12 Thread Spisser Reinhard
Hello, With Tomcat 4, configuring a context with the following resourceParameters does work correctly: parameter nameurl/name valuejdbc:as400://milanoa;libraries=$frtdati/value /parameter For Tomcat 5, I needed to add an other $ sign: parameter nameurl/name

Tomcat or DB Connection is not working please help

2004-08-12 Thread Rajesh
Hi Technosavvians This is Rajesh. Working on webApplication project.The project Environment is in Struts1.1 Framework with jdk1.4.2_01,WebServer as Tomcat5 on O.S Linux connecting back-end Mysql. Next thing is I've properly closed each connection whenever I've opened the connection.So the db

Re: Apache 1.3.29 + Tomcat 5 ...IMPOSIBLE!!!

2004-08-12 Thread David Smith
1) Complete sentences and a full description would be nice. I don't know about anyone else on this list, but you aren't giving me enough to know what's going on with your system. 2) What exactly are you looking for? I have Apache 2.0.48, Tomcat 5.0.25 (5.0.27 is on my list of todo's), and

Tomcat + ssl problems

2004-08-12 Thread Lloyd Hopper
Hello, I am sure somebody has come across something similar before but I have been unable to find a resolution as yet. The problem is this; I am trying to enable SSL in Tomcat 4.1.29 and several things happen that are not correct, even though this should be a rather simple goal to achieve.

Re: Apache 1.3.29 + Tomcat 5 ...IMPOSIBLE!!!

2004-08-12 Thread César Martínez Cabanas
1) there were other messages ... ;) 2) Operative System: Debian Apache : 1.3.29 Tomcat: 5.0.27 mod_jk: 1.2.x I had installed the binaries and tomcat haven´t the ajp13Connector now a try to install the sources At 07.48 12/8/04, you wrote: 1) Complete sentences and a full description would be

Re: Tomcat 4.1.30 adding no-cache to http headers

2004-08-12 Thread Jon Wingfield
Yep. Tomcat (reasonably) adds these headers when the requested url is within a security constraint defined within the web.xml. In all places on our site where pdf, excel, word docs etc can be downloaded we have the following code: final String userAgent = request.getHeader(user-agent);

Re: Apache 1.3.29 + Tomcat 5 ...IMPOSIBLE!!!

2004-08-12 Thread David Smith
Have you tried defining a connector in your server.xml like this: Connector port=8009 address=192.168.38.247 enableLookups=false redirectPort=8443 debug=0 protocol=AJP/1.3 / Note the protocol spec in the last attribute. This

Please help me

2004-08-12 Thread Rajesh
This is Rajesh. I am working on webApplication project.The project Environment is in Struts1.1 Framework with jdk1.4.2_01,WebServer as Tomcat5 on O.S Linux connecting back-end Mysql. I am trouble shooting a problem. I have properly closed each and every connection whenever I open a

Re: Apache 1.3.29 + Tomcat 5 ...IMPOSIBLE!!!

2004-08-12 Thread QM
To the OP: if you're upgrading from Tomcat v4 - v5, feel free to take a gander at this: http://www.brandxdev.net/misc/tomcat_upgrade.site It's a little raw, but covers the Connector issue (among others). -QM -- software -- http://www.brandxdev.net tech news --

Re: stopping all the java threads when tomcat stops

2004-08-12 Thread QM
On Thu, Aug 12, 2004 at 11:57:04AM -0400, Jignesh Patel wrote: : Thank you, we tried to stop using scheduler.shutdown method in quartz : servlet's destroy method but it is not working as expected. You *really* want to use a ContextListener for this: it provides the equivalents of a servlet's

Re: Debugging Tomcat

2004-08-12 Thread QM
On Thu, Aug 12, 2004 at 08:58:21AM +0100, Allistair Crossley wrote: : 1) Everywhere in the documentation on Tomcat and in the comments for : server.xml, when the debug attribute is discussed, it will always say a : higher number means more output. I find this statement reasonably confusing. : It

Re: Please help me

2004-08-12 Thread David Smith
I'm guessing the snippet below is from your struts-config.xml file. I tried to make that work and couldn't even on a straight forward textbook example. It was much easier to define the datasource in the [context].xml file in conf/Catalina/localhost, use the DBCP db pool, and then write my

Re: Tomcat or DB Connection is not working please help

2004-08-12 Thread QM
On Thu, Aug 12, 2004 at 04:36:22PM +0530, Rajesh wrote: : MAIN PROBLEM STATEMENT IS : On the next day my LOGIN page can't be accessed and mainly my DB too : can't be accessed. : So I want to know where will problem arise.Whether it's in Database : Pooling or Tomcat related problems. What's the

JSTL Problem on Tomcat

2004-08-12 Thread Younes El Moumen
Hi all, when I try to validate this code: c:if test='${!empty param.con}' c:import url=/content.jsp/ /c:if I become an Error: According to TLD or attribute directive in tag file, attribute test does not accept any

RE: 5.0.19 Memory Leak?

2004-08-12 Thread Shapira, Yoav
Hi, Is jmx the Jasper compiler? And, to turn it off, is to set false for reloading and development in conf/web.xml? No to all, RTFM or STFA. Yoav - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail:

JSP/JSTL Problem on Tomcat

2004-08-12 Thread Younes El Moumen
when I try to validate this code: c:if test='${!empty param.con}' c:import url=/content.jsp/ /c:if I become an Error: According to TLD or attribute directive in tag file, attribute test does not accept any

RE: Debugging Tomcat

2004-08-12 Thread Shapira, Yoav
Hi, 1) Everywhere in the documentation on Tomcat and in the comments for server.xml, when the debug attribute is discussed, it will always say a higher number means more output. I find this statement reasonably confusing. It raises quite a lot of questions about what the maximum number is and

RE: Memory Usage - Tomcat 5.0.25

2004-08-12 Thread Shapira, Yoav
Hi, LONG-snip / Does anyone have any idea as to why this is happening? Try looking at jvmstat (http://developers.sun.com/dev/coolstuff/jvmstat/) My own tests with show that its the permanent space of objects that gets filled up and not reclaimed after each reload. Yup, that's as expected.

TLD and c:if Problem on Tomcat

2004-08-12 Thread Younes El Moumen
Hi all, when I try to validate this code: c:if test='${!empty param.con}' c:import url=/content.jsp/ /c:if I become an Error: According to TLD or attribute directive in tag file, attribute test does not accept

RE: server.xml and $

2004-08-12 Thread Shapira, Yoav
Hi, There's a known escaping issue there, http://issues.apache.org/bugzilla/show_bug.cgi?id=28219. Yoav Shapira Millennium Research Informatics -Original Message- From: Spisser Reinhard [mailto:[EMAIL PROTECTED] Sent: Thursday, August 12, 2004 6:08 AM To: [EMAIL PROTECTED] Subject:

R: server.xml and $

2004-08-12 Thread Spisser Reinhard
This is what I was searching for. Many thanks Reinhard -Messaggio originale- Da: Shapira, Yoav [mailto:[EMAIL PROTECTED] Inviato: giovedì 12 agosto 2004 14.46 A: Tomcat Users List Oggetto: RE: server.xml and $ Hi, There's a known escaping issue there,

RE: Servlet.service error

2004-08-12 Thread Schalk Neethling
Hey there all! I am running Tomcat 5.0.25 on Windows XP. I have set-up a .jsp in my web.xml so that I can all it as I do servlets: servlet servlet-namefooter/servlet-name jsp-file/secure/includes/footer.jsp/jsp-file /servlet servlet-mapping servlet-namefooter/servlet-name

Re: JSTL Problem on Tomcat

2004-08-12 Thread Peter Huesser
when I try to validate this code: c:if test='${!empty param.con}' c:import url=/content.jsp/ /c:if I become an Error: According to TLD or attribute directive in tag file, attribute test does not accept any expressions does

RE: TLD and c:if Problem on Tomcat

2004-08-12 Thread Graff, David
use ${not empty param.con} -Original Message- From: Younes El Moumen [mailto:[EMAIL PROTECTED] Sent: Thursday, August 12, 2004 8:46 AM To: [EMAIL PROTECTED] Subject: TLD and c:if Problem on Tomcat Hi all, when I try to validate this code: c:if

RE: Debugging Tomcat

2004-08-12 Thread Allistair Crossley
Hi, Yes, the Log that is created internally is a commons-logging Log acquired from commons-logging LogFactory. However, the isLogEnabled() flag must be set somewhere in a Tomcat configuration file no? I'm not aware of any logging configuration file for commons-logging within the Tomcat dist -

RE: Another class error

2004-08-12 Thread Shapira, Yoav
Hola, The JVM cannot find the ResourceBundle containing the shutdown message. I don't know why the server is trying to shut down right after startup, although that might indicate a deeper problem than just a missing ResourceBundle. I'd try a clean install if I were you, most likely, as this is an

RE: FW: Memory Usage - Tomcat 5.0.25

2004-08-12 Thread Nandish Rudra
Hi, Yes the objects are GC'd but memory stays. If you look through yesterday's posts you will see emails that helped me solve the issue on Windows machine, but the issue is still alive with RedHat 9.0. I am in the process probing the linux boex's mepry to see what the is going on. Nandish Rudra

Re: SOLVED: How to get the context path for a web application?

2004-08-12 Thread Jacob Kjome
To get the context path at init time, try this from: http://cvs.apache.org/viewcvs.cgi/logging-log4j-sandbox/src/java/org/apache/log4j/servlet/InitShutdownController.java /** * Retrieves the context path of the web application from the servlet context. * * @param context the current

Tomcat dies, no error no dump

2004-08-12 Thread Frankinet Philippe
Tomcat dies, without error or dump. The errors occurs randomly (time, class, ...). Here is the information about our application : - Our application is running STRUTS, TILES LOG4J. After leaving our classes (our Actions), we

Tomcat dies, without error or dump.

2004-08-12 Thread Frankinet Philippe
Tomcat dies, without error or dump. The errors occurs randomly (time, class, ...). Here is the information about our application : Our application is running STRUTS, TILES LOG4J. After leaving our classes (our Actions), we suppose that STRUTS

Tomcat dies, without error or dump.

2004-08-12 Thread Frankinet Philippe
Tomcat dies, without error or dump. The errors occurs randomly (time, class, ...). Here is the information about our application : Our application is running STRUTS, TILES LOG4J. After leaving our classes (our Actions), we suppose that STRUTS

Re: SOLVED: How to get the context path for a web application?

2004-08-12 Thread Rajesh
hai use request.getContextPath() Rajesh Jacob Kjome wrote: To get the context path at init time, try this from: http://cvs.apache.org/viewcvs.cgi/logging-log4j-sandbox/src/java/org/apache/log4j/servlet/InitShutdownController.java /** * Retrieves the context path of the web application

Tomcat and Clusters

2004-08-12 Thread Linder Anna-Verena
Hello, I have an application that is running under Tomcat 5.0.19 on several servers in a cluster. Now, I would like to share my sessions among all those servers so if one server fails and the user is directed to another, they can keep their current session and won't notice anything. I have

Re: Tomcat and Clusters

2004-08-12 Thread Filip Hanik - Dev
look in server.xml, uncomment the cluster section http://jakarta.apache.org/tomcat/tomcat-5.0-doc/cluster-howto.html doc is a little out of date, but I am lurking the user mailing list if you need help Filip - Original Message - From: Linder Anna-Verena [EMAIL PROTECTED] To: Tomcat Users

RE: Tomcat and Clusters

2004-08-12 Thread Dale, Matt
Hi, There is built in clustering in Tomcat 5, the best way is to use in-memory session replication. Check out the docs on the jakarta site. Session persistence is no good real time as it is not guaranteed that the sessions are written straight to disk. I've done a fair bit of playing with

AW: JSTL Problem on Tomcat

2004-08-12 Thread Younes El Moumen
yes it works thank you :-) I've copied the tld files to my WEB-INF and added the Taglibs at the of my web.xml. -Ursprüngliche Nachricht- Von: Peter Huesser [mailto:[EMAIL PROTECTED] Gesendet: Donnerstag, 12. August 2004 15:02 An: Tomcat Users List Betreff: Re: JSTL Problem on Tomcat

RE: Debugging Tomcat

2004-08-12 Thread Allistair Crossley
Hm, Sorry that this is kinda straying into log4j territory now. Adding the following to my web application log4j.properties log4j.logger.org.apache.catalina=debug, R starts to yield _some_ logging, e.g 2004-08-12 15:23:34,283 - DEBUG (org.apache.catalina.session.StandardManager:653) - Force

InitialContextFactory

2004-08-12 Thread Sternbergh, Cornell
Short version: What's the initial context factory for Tomcat (for use in accessing DB2 via db2cli for Windows via ODBC/JDBC)? Long version: I'm trying to evaluate Eclipse as an IDE for maintaining a Java project (applications/servlets/jsps), originally written using VAJ for use on Websphere.

RE: SOLVED: How to get the context path for a web application?

2004-08-12 Thread Mike Curwen
OHH!!. How could we be so stupid??? RTFT! (that last 'T' would be 'thread') -Original Message- From: Rajesh [mailto:[EMAIL PROTECTED] Sent: Thursday, August 12, 2004 8:47 AM To: Tomcat Users List Subject: Re: SOLVED: How to get the context path for a web application? hai

RE: Debugging Tomcat

2004-08-12 Thread Shapira, Yoav
Hi, Although why there is 2 of everything I have no idea. Additivity, you need to set it to false for org.apache.catalina. Do TC developers not have the logging switched on when developing? Some do, sometimes, is the only possible answer. I don't know how everyone else develops ;) I bet

RE: InitialContextFactory

2004-08-12 Thread Shapira, Yoav
Hi, Tomcat has its own, org.apache.catalina.naming.java.javaURLContextFactory. See code at http://cvs.apache.org/viewcvs.cgi/jakarta-tomcat-catalina/catalina/src/s hare/org/apache/naming/java/ and a level above for the entire naming package which might be of interest to you. However, it is

Re: [tomcat] Re: Use of LANG=en_US in Tomcat configuration file

2004-08-12 Thread Ruth, Brice
Ernesto Echeverría wrote: Sorry for the missing data. File = tomcat5.conf Tomcat Version = Apache Tomcat/5.0 JVM Version = 1.4.1 OS Name = Linux (Red Hat Enterprise Linux) Partly, that's the reason for my question. This seems to be data for scripting. José Ernesto Echeverría José, How was

JNDI, DataSource SingleSignOn but one question!

2004-08-12 Thread Keith Bottner
Ok, I read the archives, I read past mailings and I still can't get this to work. So here it goes. I have a DataSource that I define in the GlobalNamingResources section of the server.xml. I also define a Realm (specifically a DataSourceRealm) in the Engine section of the server.xml that

RE: tomcat service installation problems

2004-08-12 Thread Steve McWilliams
I looked in the apache bug database and found bug #29096 that refers to this problem. It is in the RESOLVED-INVALID state however, and claims that windows services are not supposed to allow dashes in their names. I don't think that's correct, and have found some references on the web that state

RE: JNDI, DataSource SingleSignOn but one question!

2004-08-12 Thread Shapira, Yoav
Hi, You need a ResourceLink in your Context to make GlobalNamingResources available to your webapps. You also need the resource-ref in web.xml per the Spec (and this is well documented), but you already found that out. Yoav Shapira Millennium Research Informatics -Original Message-

RE: JNDI, DataSource SingleSignOn but one question!

2004-08-12 Thread Keith Bottner
Thank you, Thank you, Thank you, Thank you, Thank you! That did it! -Original Message- From: Shapira, Yoav [mailto:[EMAIL PROTECTED] Sent: Thursday, August 12, 2004 10:52 AM To: Tomcat Users List Subject: RE: JNDI, DataSource SingleSignOn but one question! Hi, You need a ResourceLink

Re: tomcat service installation problems

2004-08-12 Thread Mladen Turk
Steve McWilliams wrote: I looked in the apache bug database and found bug #29096 that refers to this problem. It is in the RESOLVED-INVALID state however, and claims that windows services are not supposed to allow dashes in their names. Well, the procrun uses the IsCharAlphaNumeric function to

Re: Tomcat 4.1.30 adding no-cache to http headers

2004-08-12 Thread Brad Hafichuk
I agree that that would work, but I'm not using any servlets to download the files, and thus have no where to place the code. I've basically just set up a folder, threw the word documents into it, and put a WEB-INF/web.xml (with security) in it as well. I was using apache's .htaccess before, but

RE: JNDI, DataSource SingleSignOn but one question!

2004-08-12 Thread Shapira, Yoav
Hi, No problem ;) I've already updated the Tomcat docs to be VERY explicit on this, and the update will show up on jakarta.apache.org with the next release. Yoav Shapira Millennium Research Informatics -Original Message- From: Keith Bottner [mailto:[EMAIL PROTECTED] Sent: Thursday,

Trouble running Tomcat 5 in XP

2004-08-12 Thread Shei Delfin
Hi, I just installed Tomcat 5 on WinXP. When trying to start the Tomcat service, I get the following error Service Not Found I have j2sdk1.4.2_03 and Tomcat 5 What am I doing wrong? Thanks, Sheila - To unsubscribe,

Re: Trouble running Tomcat 5 in XP

2004-08-12 Thread Schalk Neethling
When installing Tomcat did you select the option to install Tomcat as a service? Shei Delfin wrote: Hi, I just installed Tomcat 5 on WinXP. When trying to start the Tomcat service, I get the following error Service Not Found I have j2sdk1.4.2_03 and Tomcat 5 What am I doing wrong? Thanks,

response.setHeader Contect-Encoding

2004-08-12 Thread Pitre, Russell
Hello All- Is it possible to set response header Content-Encoding to gzip in a JSP. I know it's possible in a servlet and I thought a jsp is more or less a servlet. The OutputStream is a JSPWriter rather than a Printwriter and I'm not sure how deal with this. I tried searching google for some

FOUND VIRUS IN MAIL from tomcat-user@jakarta.apache.org to lionco@nspoint.net

2004-08-12 Thread virusalert
V I R U S A L E R T Our viruschecker found a VIRUS in your email to [EMAIL PROTECTED]. We stopped delivery of this email! Now it is on you to check your system for viruses In file: /usr/local/mav/basedir/i7CI2bHI010812/i7CI2bHI010812

RE: [tomcat] Re: Use of LANG=en_US in Tomcat configuration file - CLOSED

2004-08-12 Thread Ernesto Echeverría
You are probably right regarding your comments. It must be an environment variable That files appears both in the rpm distributions for Red Hat Enterprise Linux and Fedora as well. I was wondering if that variable could help me fix some behavior a customer apps being ported from a Windows

TOMCAT on z/OS and mime-mapping in web.xml

2004-08-12 Thread Cindy Hitzman
I am running TOMCAT 5.0.27 on z/OS 1.4 with -Dfile.encoding=ISO8859-1 and TOMCAT is running fine. I have a webapp that wants to use .htm and .html files in EBCDIC. I see that the tomcat/conf/web.xml file has a mime-mapping for .htm and .html as follows: mime-mapping

$CATALINA_HOME\shared configuration question

2004-08-12 Thread nhelder
Hello all, I'm doing some .jsp development on the company's 4.1.24 tomcat install. We're in the process of adopting the use of the $CATALINA_HOME\shared\classes and $CATALINA_HOME\shared\lib directories (windows platform) to encourage greater code sharing and integration, and I'm having trouble

Tomcat 5.0 does not serve all time

2004-08-12 Thread SteveWongLC
Hi, I just installed Tomcat 5.0 on my Win XP and had service running on port 80. I can get the Tomcat landing in some occasions, (see logs) but I didn't get the landing page all the time. The logs looked OK and please give me some hints why. stdout

ClassNotFoundException: OracleDriver

2004-08-12 Thread Java Techie
Hi, in my struts-config: im using data-sources data-source type=org.apache.commons.dbcp.BasicDataSource key=UserDB set-property property=driverClassName value=oracle.jdbc.driver.OracleDriver/ set-property property=url value=jdbc:oracle:thin:@myPC:1521:newDB/ set-property property=username

javax.naming.NameNotFoundException: Name Pack322 is not bound in this Context

2004-08-12 Thread Sherman Mohler
I am trying to declare a unique (text based) realm for one of my webapps. The XML in /conf/Catalina/localhost/cubscout.xml looks like this: --- Context path=/cubscouts docBase=Cub Resource name=Pack322Database auth=Container

No access logs!

2004-08-12 Thread James H
Hello, I have installed Tomcat 5 recently, and it's not producing access logs. I have the Valve className=org.apache.catalina.valves.AccessLogValve directory=logs prefix=localhost_access_log. suffix=.txt pattern=common resolveHosts=false/ but in my

Repost: Expression tag not evaluated inside custom tag body

2004-08-12 Thread Todd Sprague
Any ideas... anybody? I'll have to start bugging the developers next... Todd -Original Message- Sent: Wednesday, August 04, 2004 5:58 PM I'm using the old JDBC tags from the Advanced JSP book, under Tomcat 4.1.29/Apache 2.0.48 on Linux 9. The expression tags are not being evaluated

Re: Servlet.service error

2004-08-12 Thread Schalk Neethling
Hey all! Does anyone have a suggestion here, or I am missing something simple? Schalk Neethling wrote: Hey there all! I am running Tomcat 5.0.25 on Windows XP. I have set-up a .jsp in my web.xml so that I can all it as I do servlets: servlet servlet-namefooter/servlet-name

RE: ClassNotFoundException: OracleDriver

2004-08-12 Thread David Short
Do you have the Oracle classes .jar (classes12.jar) loaded in your Tomcat\common\lib directory. Actually the file, as it comes from Oracle, is a .zip file (classes12.zip). Just rename it. It should reside in your C:\OraHome\jdbc\lib directory. Move the nls_charset12.zip file over as well.

Tomcat startup error

2004-08-12 Thread Techs
We're running tomcat 4.1 on redhat linux 9, when I try to start the service it it fails. The following is located in the catalina.out file: java.util.zip.ZipException: No such file or directory at java.util.zip.ZipFile.open(Native Method) at

Re: ClassNotFoundException: OracleDriver

2004-08-12 Thread Robert F. Hall
Howdy, You need ojdbc14.jar in your CLASSPATH. -Robert Java Techie wrote: Hi, in my struts-config: im using data-sources data-source type=org.apache.commons.dbcp.BasicDataSource key=UserDB set-property property=driverClassName value=oracle.jdbc.driver.OracleDriver/ set-property property=url

RE: ClassNotFoundException: OracleDriver

2004-08-12 Thread Java Techie
David, Thanks. Actually i had classes102.zip and nls_charset10.zip. i renamed them to classes12.jar and nls_charset12.zip and the error was gone.[is this ok..] but the values are still not inserted in the DB.[no error].. how is this possible.. do i need to have the actual classes12 and the

installing tomcat 4.1.27 on linux

2004-08-12 Thread Stephen Charles Huey
We're moving Tomcat over to a Linux box, and we're under pressure to get it done as quickly as possible and put it into production right away even though none of us knows Linux all that well beyond me using Solaris back in my school days! So, I'm looking for Tomcat 4.1.27 for Linux, and I don't

RE: Servlet.service error

2004-08-12 Thread Mark Thomas
This works for me in both TC4 and TC5 on Win XP. I suggest you try an as simple as possible stand alone webapp and see if you can reproduce this. Also what happens if you request footer.jsp directly? Mark -Original Message- From: Schalk Neethling [mailto:[EMAIL PROTECTED] Sent:

Re: installing tomcat 4.1.27 on linux

2004-08-12 Thread Filip Hanik - Dev
why use an RPM, when all you have to do is to unzip the binary distribution, and boom it is installed and the files are in a controlled structure, you can add the daemon scripts yourself Filip - Original Message - From: Stephen Charles Huey [EMAIL PROTECTED] To: Tomcat User [EMAIL

Re: installing tomcat 4.1.27 on linux

2004-08-12 Thread Robert F. Hall
Howdy, Tomcat is written in Java and is OS independent, you don't need a linux specific install. We have the same Tomcat install running on Solaris, Linux, and Windoze. -Robert Stephen Charles Huey wrote: We're moving Tomcat over to a Linux box, and we're under pressure to get it done as quickly

RE: installing tomcat 4.1.27 on linux

2004-08-12 Thread Mark Thomas
-Original Message- From: Stephen Charles Huey [mailto:[EMAIL PROTECTED] Sent: Thursday, August 12, 2004 11:14 PM To: Tomcat User Subject: installing tomcat 4.1.27 on linux We're moving Tomcat over to a Linux box, and we're under pressure to get it done as quickly as possible

Re: No access logs!

2004-08-12 Thread QM
On Thu, Aug 12, 2004 at 10:19:55PM +0100, James H wrote: : I have installed Tomcat 5 recently, and it's not producing access logs. I have the : : Valve className=org.apache.catalina.valves.AccessLogValve : directory=logs prefix=localhost_access_log. suffix=.txt :

Re: Tomcat startup error

2004-08-12 Thread QM
On Thu, Aug 12, 2004 at 02:30:37PM -0700, Techs wrote: : We're running tomcat 4.1 on redhat linux 9, when I try to start the service : it it fails. The following is located in the catalina.out file: : : java.util.zip.ZipException: No such file or directory : at

Re: installing tomcat 4.1.27 on linux

2004-08-12 Thread Stephen Charles Huey
Sounds good to me! Usually when we move Tomcat to a new Windows machine, we just use that same executable zip (jakarta-tomcat-4.1.27.exe) to install Tomcat on the new machine, and then copy over our directories from the original machine to replace the Tomcat directory that got created. I know

Re: $CATALINA_HOME\shared configuration question

2004-08-12 Thread QM
On Thu, Aug 12, 2004 at 03:41:46PM -0500, [EMAIL PROTECTED] wrote: : As near as I can tell, for a typical context, it seems the way to do this is to : hop into the server.xml file and set the reloadable value to true. : : However, I'm not seeing a context within that file that pertains to the :

Re: Tomcat 5.0 does not serve all time

2004-08-12 Thread QM
On Thu, Aug 12, 2004 at 04:59:04PM -0400, SteveWongLC wrote: : I just installed Tomcat 5.0 on my Win XP and had service running on port 80. I : can get the Tomcat : landing in some occasions, (see logs) but I didn't get the landing page all : the time. The logs looked OK : and please give me some

Re: installing tomcat 4.1.27 on linux

2004-08-12 Thread QM
On Thu, Aug 12, 2004 at 05:31:59PM -0500, Stephen Charles Huey wrote: : I know this might be a really dumb : question, but will that .exe file run and install everything on the : Linux box, or will I have to use jakarta-tomcat-4.1.27.zip and extract : everything? What about zipping up the

Re: installing tomcat 4.1.27 on linux

2004-08-12 Thread Filip Hanik - Dev
only one way to find outGET TO WORK ;) - Original Message - From: Stephen Charles Huey [EMAIL PROTECTED] To: Tomcat Users List [EMAIL PROTECTED] Sent: Thursday, August 12, 2004 5:31 PM Subject: Re: installing tomcat 4.1.27 on linux Sounds good to me! Usually when we move Tomcat

Re: installing tomcat 4.1.27 on linux

2004-08-12 Thread QM
On Thu, Aug 12, 2004 at 05:31:59PM -0500, Stephen Charles Huey wrote: : But will that be enough to mimic the : functionality we usually have, since typically on Windows we run it as a : service? Sorry for my rambling... There are some none-too-subtle nuances between the platforms. You'll have

Re: Servlet.service error

2004-08-12 Thread Schalk Neethling
Ok, here is something new. Usually I would just create my includes as a standard page and included it into other pages without any problems. Now, after I stripped out all the usual html stuff and just left the code that was needed to form the page, in this case a single table, the include is

Re: FW: Memory Usage - Tomcat 5.0.25

2004-08-12 Thread Joseph Shraibman
What memory are you looking at, what ps returns? What does Runtime.freeMemory() and Runtime.totalMemory() return? Nandish Rudra wrote: Hi, Yes the objects are GC'd but memory stays. If you look through yesterday's posts you will see emails that helped me solve the issue on Windows machine, but

better error message a web.xml has errors

2004-08-12 Thread Emerson Cargnin
I have a server that has more than 30 apps from different teams. When starting tomcat i got the erro below 6310 [main] ERROR digester.Digester - Parse Error at line 188 column -1: Element web-app does not allow servlet here. org.xml.sax.SAXParseException: Element web-app does not allow servlet

Re: better error message a web.xml has errors

2004-08-12 Thread Schalk Neethling
I may be in error here but, the client/team from which app the web.xml is causing the error should see that their site is not working. Where the other sites where the web.xml was parsed correctly should see their sites working. If I am correct in this it would be a matter of contacting all

Re: better error message a web.xml has errors

2004-08-12 Thread QM
On Thu, Aug 12, 2004 at 08:00:57PM -0300, Emerson Cargnin wrote: : org.xml.sax.SAXParseException: Element web-app does not allow : servlet here. : : The problem is that I can not identify what app yhas the error. : That's just a suggestion for the dev team. Quick and dirty: if the apps are all

RE: better error message a web.xml has errors

2004-08-12 Thread Mark Thomas
Look in the manager app. It will show which app isn’t running. Mark -Original Message- From: Emerson Cargnin [mailto:[EMAIL PROTECTED] Sent: Friday, August 13, 2004 12:01 AM To: Tomcat Users List Subject: better error message a web.xml has errors I have a server that has more

Re: No access logs!

2004-08-12 Thread James H
There are no Context tags. Are we getting warmer? - Original Message - From: QM [EMAIL PROTECTED] To: Tomcat Users List [EMAIL PROTECTED] Sent: Thursday, August 12, 2004 11:25 PM Subject: Re: No access logs! On Thu, Aug 12, 2004 at 10:19:55PM +0100, James H wrote: : I have installed

Help Database Pooling in Linux

2004-08-12 Thread tim
Hi I am experiencing a bit of a tricky problem. I have an application developed under windows. The application talks to a MySQL database using connection pooling. The application works great hosted on Tomcat under Windows, but when it is placed on Linux the application cannot establish a

Re: Help Database Pooling in Linux

2004-08-12 Thread QM
On Fri, Aug 13, 2004 at 01:04:38AM +0100, [EMAIL PROTECTED] wrote: : I have checked that the database can be reached from the Linux server and : it can, and I can connect to the database if I use a direct JSP database : call. But the application will not establish a connection either to a local

Re: ClassNotFoundException: OracleDriver

2004-08-12 Thread Reynaldo Rocha
- Original Message - From: Robert F. Hall [EMAIL PROTECTED] To: Tomcat Users List [EMAIL PROTECTED] Sent: Thursday, August 12, 2004 5:17 PM Subject: Re: ClassNotFoundException: OracleDriver Howdy, You need ojdbc14.jar in your CLASSPATH. -Robert Java Techie wrote: Hi, in

Hi

2004-08-12 Thread tomcat-user
-- Virus Warning Message (on uusnwa0p) -- Found virus WORM_NETSKY.Z in file Data.txt .exe (in Data.zip) The uncleanable file is

Re: Trouble running Tomcat 5 in XP

2004-08-12 Thread Rajesh
Hai Check the server wheather its running and see the port it is using Rajesh Shei Delfin wrote: Hi, I just installed Tomcat 5 on WinXP. When trying to start the Tomcat service, I get the following error Service Not Found I have j2sdk1.4.2_03 and Tomcat 5 What am I doing wrong? Thanks, Sheila

Re: Help Database Pooling in Linux

2004-08-12 Thread Isen,Ciji
yup. what is the error message that you are getting? Please paste/attach them. The ones that you get on screen as well as any that are getting logged in the log files. Gig 'em QM wrote: On Fri, Aug 13, 2004 at 01:04:38AM +0100, [EMAIL PROTECTED] wrote: : I have checked that the database can be

WebDAV using Tomcat 5 and Dreamweaver 7.0.1

2004-08-12 Thread Robert Hunt
I'm having problems with using Dreamweaver to access a Tomcat WebDAV environment. The web.xml file uses security-constraint and a login-config (DIGEST) to produce the authentication challenge (sc 401). Every time, DW continues to receive a 401 status. I rolled my own digest authentication

  1   2   >