Re: JSF errors when upgrading Tomcat and Eclipse: com.sun.faces.config.JavaClassScanningAnnotationScanner$ConstantPoolInfo.containsAnnotation Unknow type constant pool XX at position XX

2023-10-12 Thread Brian Braun
Hi, I replaced JSF 2.2.1 with 2.2.20 and the problem is gone! It seems that the old 2.2.1 JAR had some kind of old format that crushed with the way the latest Eclipse works. And since 2.2.1 to 2.2.20 is not a huge upgrade, my old JSF pages still work. Nice! Thanks! On Thu, Oct 12, 2023 at 4:35 

Re: JSF errors when upgrading Tomcat and Eclipse: com.sun.faces.config.JavaClassScanningAnnotationScanner$ConstantPoolInfo.containsAnnotation Unknow type constant pool XX at position XX

2023-10-12 Thread Brian Braun
Hi Chris, Its JSF version 2.2.1 What is a bytecode scanner? I will google that, I don't have any idea. And why did I start getting this problem a few days ago? The only thing that changed is Eclipse (I upgraded it to the latest) and the Tomcat that Eclipse uses to run the website everytime I run

Re: JSF errors when upgrading Tomcat and Eclipse: com.sun.faces.config.JavaClassScanningAnnotationScanner$ConstantPoolInfo.containsAnnotation Unknow type constant pool XX at position XX

2023-10-12 Thread Christopher Schultz
Brian, On 10/12/23 16:55, Brian Braun wrote: Hello, First of all, I apologize if maybe my issue is not exclusively related to Tomcat, but I think it is. I started my website many years ago, using Struts 1.2.4 and since then I have been using it. Some years after that I had the intention to

JSF errors when upgrading Tomcat and Eclipse: com.sun.faces.config.JavaClassScanningAnnotationScanner$ConstantPoolInfo.containsAnnotation Unknow type constant pool XX at position XX

2023-10-12 Thread Brian Braun
Hello, First of all, I apologize if maybe my issue is not exclusively related to Tomcat, but I think it is. I started my website many years ago, using Struts 1.2.4 and since then I have been using it. Some years after that I had the intention to migrate to JSF (version 2.2.X) and combine both

Re: WebappClassLoaderBase error when upgrading Tomcat 8 to 8.5

2023-05-03 Thread Christopher Schultz
Jeremy, On 5/3/23 12:27, Jeremy Nguyen wrote: Thanks Chris! That works for me now. Okay. I'll ask the rest of the team if it's an acceptable workaround. Honestly, that parent ClassLoader is violating The Rules. Only issue I have left is failing to compile/validate JSP. Caused by:

Re: WebappClassLoaderBase error when upgrading Tomcat 8 to 8.5

2023-05-03 Thread Jeremy Nguyen
Thanks Chris! That works for me now. Only issue I have left is failing to compile/validate JSP. Caused by: java.lang.NullPointerException > > at org.apache.jasper.compiler.Validator$ValidateVisitor.( > Validator.java:527) ~[jasper.jar:8.5.89] > > at

Re: WebappClassLoaderBase error when upgrading Tomcat 8 to 8.5

2023-05-03 Thread Christopher Schultz
Jeremy, On 5/3/23 11:00, jeremyn...@gmail.com wrote: Sure Ill run it. https://people.apache.org/~schultz/binaries/apache-tomcat-8.5.89-dev.tar.gz Please note that this is not an official Tomcat release (it's current 8.5.x HEAD plus a tiny patch to ignore any null resources obtained from

Re: WebappClassLoaderBase error when upgrading Tomcat 8 to 8.5

2023-05-03 Thread Jeremy Nguyen
If WebAppClassLoader.findResources returns null then it would come from java.net.URLClassLoader.findResources. @Override > public Enumeration findResources(String resources) throws IOException > { > logger.debug("finding resources " + resources); > Enumeration urls =

Re: WebappClassLoaderBase error when upgrading Tomcat 8 to 8.5

2023-05-03 Thread jeremyn408
Sure Ill run it. - Jeremy > On May 3, 2023, at 7:05 AM, Christopher Schultz > wrote: > >  > Jeremy, > >> On 5/2/23 22:27, Jeremy Nguyen wrote: >> I was able to retrieve some logs that might shed some insight on the >> parent classloader when running 8.5.87. I'll be frank that I don't quite

Re: WebappClassLoaderBase error when upgrading Tomcat 8 to 8.5

2023-05-03 Thread Christopher Schultz
Jeremy, On 5/2/23 22:27, Jeremy Nguyen wrote: I was able to retrieve some logs that might shed some insight on the parent classloader when running 8.5.87. I'll be frank that I don't quite understand the mechanics of classloaders in Java. LogFactory from

Re: WebappClassLoaderBase error when upgrading Tomcat 8 to 8.5

2023-05-02 Thread Jeremy Nguyen
I was able to retrieve some logs that might shed some insight on the parent classloader when running 8.5.87. I'll be frank that I don't quite understand the mechanics of classloaders in Java. LogFactory from > org.eclipse.osgi.internal.loader.EquinoxClassLoader@1628551735] [LOOKUP] > LogFactory

Re: WebappClassLoaderBase error when upgrading Tomcat 8 to 8.5

2023-05-02 Thread Jeremy Nguyen
I picked 8.5.34 because 8.5.35 has that code change while 34 doesn't. https://github.com/apache/tomcat/blob/8.5.35/java/org/apache/catalina/loader/WebappClassLoaderBase.java#L1050 I'll do some debugging for the classloader soon. I'm still trying to get my application running. I'm wrestling with

Re: WebappClassLoaderBase error when upgrading Tomcat 8 to 8.5

2023-05-02 Thread Christopher Schultz
Jeremy, On 5/1/23 17:46, Jeremy Nguyen wrote: I noticed this change was introduced: https://bz.apache.org/bugzilla/show_bug.cgi?id=62868 https://github.com/apache/tomcat/blame/8.5.x/java/org/apache/catalina/loader/WebappClassLoaderBase.java#L1122 I'll try running 8.5.34 and report back. Wow

Re: WebappClassLoaderBase error when upgrading Tomcat 8 to 8.5

2023-05-02 Thread Christopher Schultz
Rob, On 5/1/23 17:12, Rob Sargent wrote: => On 5/1/23 14:36, Christopher Schultz wrote: Jeremy, On 5/1/23 14:22, Jeremy Nguyen wrote: I'm trying to upgrade Tomcat 8 to 8.5 and I'm getting a nullpointerexception within WebappClassLoaderBase.CombinedEnumeration.inc. It seems to occur when it's

Re: WebappClassLoaderBase error when upgrading Tomcat 8 to 8.5

2023-05-01 Thread Jeremy Nguyen
Confirmed that running 8.5.34 resolves the issue. I'll have no choice but to run this version until the issue is resolved, or a workaround is found. Thanks all! On Mon, May 1, 2023 at 2:46 PM Jeremy Nguyen wrote: > I noticed this change was introduced: >

Re: WebappClassLoaderBase error when upgrading Tomcat 8 to 8.5

2023-05-01 Thread Jeremy Nguyen
I noticed this change was introduced: https://bz.apache.org/bugzilla/show_bug.cgi?id=62868 https://github.com/apache/tomcat/blame/8.5.x/java/org/apache/catalina/loader/WebappClassLoaderBase.java#L1122 I'll try running 8.5.34 and report back. Jeremy On Mon, May 1, 2023 at 2:12 PM Rob Sargent

Re: WebappClassLoaderBase error when upgrading Tomcat 8 to 8.5

2023-05-01 Thread Rob Sargent
On 5/1/23 14:36, Christopher Schultz wrote: Jeremy, On 5/1/23 14:22, Jeremy Nguyen wrote: I'm trying to upgrade Tomcat 8 to 8.5 and I'm getting a nullpointerexception within WebappClassLoaderBase.CombinedEnumeration.inc. It seems to occur when it's trying to initialize commons-logging

Re: WebappClassLoaderBase error when upgrading Tomcat 8 to 8.5

2023-05-01 Thread Christopher Schultz
Jeremy, On 5/1/23 14:22, Jeremy Nguyen wrote: I'm trying to upgrade Tomcat 8 to 8.5 and I'm getting a nullpointerexception within WebappClassLoaderBase.CombinedEnumeration.inc. It seems to occur when it's trying to initialize commons-logging LogFactory for any class specified in Web.xml, and

WebappClassLoaderBase error when upgrading Tomcat 8 to 8.5

2023-05-01 Thread Jeremy Nguyen
Hi, I'm trying to upgrade Tomcat 8 to 8.5 and I'm getting a nullpointerexception within WebappClassLoaderBase.CombinedEnumeration.inc. It seems to occur when it's trying to initialize commons-logging LogFactory for any class specified in Web.xml, and it's calling

Re: Upgrading Tomcat from 7.0.34 to 8.0.53

2020-11-19 Thread Chuan Ong
Hi Steven I think what you are looking for is called Apache TomEE which is a version of tomcat that supports EJBs. You can find it here: https://tomee.apache.org. Judging from what you are stating checkout version 7.1.4 plus. Thanks. On Thu, Nov 19, 2020 at 1:02 PM Mark Thomas wrote: > On

Re: Upgrading Tomcat from 7.0.34 to 8.0.53

2020-11-19 Thread Mark Thomas
On 19/11/2020 18:48, Nelligan, Steven M wrote: > > I am in the process of upgrading our systems from Tomcat 7.0.34 to Tomcat > 8.0.53 and Java 7 to Java 8 Tomcat 8.0.x is no longer supported. You need to upgrade to at least 8.5.x and preferably 9.0.x. > I'm not sure if this is a java 8 or a

Upgrading Tomcat from 7.0.34 to 8.0.53

2020-11-19 Thread Nelligan, Steven M
I am in the process of upgrading our systems from Tomcat 7.0.34 to Tomcat 8.0.53 and Java 7 to Java 8 I'm not sure if this is a java 8 or a Tomcat 8 issue. We have several application which use EJBs. These are not working. I have no experience in EJB's and having problems trying to figure

Re: 400 error when upgrading tomcat

2020-09-10 Thread Mark Thomas
Schultz < > ch...@christopherschultz.net> wrote: > > Brian, > > On 9/10/20 13:13, Brian Harris wrote: >>>> We’re having an issue when upgrading Tomcat from 8.5.50 to 8.5.51. >>>> Since moving to this version, requests sent to the http port are >>>> failin

Re: 400 error when upgrading tomcat

2020-09-10 Thread Brian Harris
ch...@christopherschultz.net> wrote: > -BEGIN PGP SIGNED MESSAGE- > Hash: SHA256 > > Brian, > > On 9/10/20 13:13, Brian Harris wrote: > > We’re having an issue when upgrading Tomcat from 8.5.50 to 8.5.51. > > Since moving to this version, requests sent to the http port are &

Re: 400 error when upgrading tomcat

2020-09-10 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA256 Brian, On 9/10/20 13:13, Brian Harris wrote: > We’re having an issue when upgrading Tomcat from 8.5.50 to 8.5.51. > Since moving to this version, requests sent to the http port are > failing with a 400 error code(bad request). The s

400 error when upgrading tomcat

2020-09-10 Thread Brian Harris
We’re having an issue when upgrading Tomcat from 8.5.50 to 8.5.51. Since moving to this version, requests sent to the http port are failing with a 400 error code(bad request). The server.xml is configured to redirect the http port to the https port. This has worked for years and did not start

RE: Upgrading Tomcat 8.0.23 to Tomcat 8.50

2016-07-06 Thread Venkataramani, Sundar
Hachey [mailto:philip.hac...@nrc-cnrc.gc.ca] Sent: Wednesday, July 6, 2016 9:52 PM To: Tomcat Users List <users@tomcat.apache.org> Subject: Re: Upgrading Tomcat 8.0.23 to Tomcat 8.50 I would do a fresh install to a new directory and change what you need to to match your previous configu

Re: Upgrading Tomcat 8.0.23 to Tomcat 8.50

2016-07-06 Thread Philip Hachey
I would do a fresh install to a new directory and change what you need to to match your previous configuration, taking into account changes between Tomcat versions (see: http://tomcat.apache.org/migration.html). You will need to update system environment variables such as $CATALINA_HOME

Upgrading Tomcat 8.0.23 to Tomcat 8.50

2016-07-06 Thread Venkataramani, Sundar
Help Required. We need to upgrade our tomcat version from Tomcat 8.0.23 to Tomcat 8.50?. Do we need an upgrade path for these or do we need to do fresh install?. Thanks Sundar.V

Re: Upgrading Tomcat version

2014-05-29 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA256 Mark, On 5/28/14, 8:12 AM, Mark Thomas wrote: On 28/05/2014 13:06, David kerber wrote: Right now I'm running TC 7.0.22 on Windows Server 2008 R2, as windows services. Not using APR. To upgrade to the latest version, I should be able to just

Upgrading Tomcat version

2014-05-28 Thread David kerber
Right now I'm running TC 7.0.22 on Windows Server 2008 R2, as windows services. Not using APR. To upgrade to the latest version, I should be able to just stop the services and unzip the latest .zip version on top of the existing Tomcat installation, right? I have already tested it to

Re: Upgrading Tomcat version

2014-05-28 Thread Mark Thomas
On 28/05/2014 13:06, David kerber wrote: Right now I'm running TC 7.0.22 on Windows Server 2008 R2, as windows services. Not using APR. To upgrade to the latest version, I should be able to just stop the services and unzip the latest .zip version on top of the existing Tomcat installation,

Re: Upgrading Tomcat version

2014-05-28 Thread David kerber
On 5/28/2014 8:12 AM, Mark Thomas wrote: On 28/05/2014 13:06, David kerber wrote: Right now I'm running TC 7.0.22 on Windows Server 2008 R2, as windows services. Not using APR. To upgrade to the latest version, I should be able to just stop the services and unzip the latest .zip version on

Re: Upgrading Tomcat version

2014-05-28 Thread Mark Thomas
On 28/05/2014 13:21, David kerber wrote: On 5/28/2014 8:12 AM, Mark Thomas wrote: On 28/05/2014 13:06, David kerber wrote: Right now I'm running TC 7.0.22 on Windows Server 2008 R2, as windows services. Not using APR. To upgrade to the latest version, I should be able to just stop the

Re: Upgrading Tomcat in the customer base

2013-03-20 Thread Pid
On 19/03/2013 19:24, Patrick Flaherty wrote: Hi, We deploy tomcat in our own folder (c:\rsi_tc\tomcat) on a WIndows machine as a service. We use the service.bat to install as a service. Historically to update tomcat we would remove the current version and install the new version. There is

Re: Upgrading Tomcat in the customer base

2013-03-20 Thread André Warnier
Pid wrote: On 19/03/2013 19:24, Patrick Flaherty wrote: Hi, We deploy tomcat in our own folder (c:\rsi_tc\tomcat) on a WIndows machine as a service. We use the service.bat to install as a service. Historically to update tomcat we would remove the current version and install the new version.

Upgrading Tomcat in the customer base

2013-03-19 Thread Patrick Flaherty
Hi, We deploy tomcat in our own folder (c:\rsi_tc\tomcat) on a WIndows machine as a service. We use the service.bat to install as a service. Historically to update tomcat we would remove the current version and install the new version. There is rub in all this which we have to change the

RE: Upgrading Tomcat in the customer base

2013-03-19 Thread Martin Gainty
__ ..place disclaimer here... From: pflah...@rampageinc.com To: users@tomcat.apache.org Subject: Upgrading Tomcat in the customer base Date: Tue, 19 Mar 2013 15:24:07 -0400 Hi, We deploy tomcat in our own folder (c:\rsi_tc\tomcat) on a WIndows machine

Upgrading Tomcat 7.0.29 windows service

2012-11-25 Thread Łukasz Matuszewski
Welcome, i have installed Apache Tomcat 7.0.29 as windows service onto Windows Server 2008. I want to upgrade Apache Tomcat 7.0.29 to new version 7.0.33. My question is simple: Can i just copy all jars from Apache Tomcat 7.0.33 to appriopriate place in my Apache Tomcat 7.0.29 installation ?

Re: Upgrading Tomcat 7.0.29 windows service

2012-11-25 Thread Mark Thomas
Łukasz Matuszewski matuszewski.luk...@gmail.com wrote: Welcome, i have installed Apache Tomcat 7.0.29 as windows service onto Windows Server 2008. I want to upgrade Apache Tomcat 7.0.29 to new version 7.0.33. My question is simple: Can i just copy all jars from Apache Tomcat 7.0.33 to

Re: Best practices for upgrading Tomcat on Windows?

2012-09-20 Thread Brett Delle Grazie
On 19 September 2012 23:58, Christopher Schultz ch...@christopherschultz.net wrote: -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 David, On 9/19/12 4:32 PM, David A. Rush wrote: Is there a set of best practices documented anywhere for upgrading Tomcat on Windows? I run Tomcat as a Windows

Best practices for upgrading Tomcat on Windows?

2012-09-19 Thread David A. Rush
Is there a set of best practices documented anywhere for upgrading Tomcat on Windows? I run Tomcat as a Windows service on several machines. I can, and have many times, completely removed Tomcat and reinstalled a new version, but there's probably a better way, particular for minor version

Re: Best practices for upgrading Tomcat on Windows?

2012-09-19 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 David, On 9/19/12 4:32 PM, David A. Rush wrote: Is there a set of best practices documented anywhere for upgrading Tomcat on Windows? I run Tomcat as a Windows service on several machines. I can, and have many times, completely removed Tomcat

Re: isHexDigit error problems and upgrading Tomcat and jdk

2012-06-10 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Miguel, On 6/7/12 5:51 PM, Miguel González Castaños wrote: That depends upon how you have configured your access log: you can configure an access log to log only requests that failed and the details of that request like this: Valve

Re: isHexDigit error problems and upgrading Tomcat and jdk

2012-06-07 Thread Miguel González Castaños
On 07/06/2012 00:54, Konstantin Kolinko wrote: 2012/6/7 Miguel González Castañosmiguel_3_gonza...@yahoo.es: Hi, We are getting isHexDigit errors again, although there is no malformed URL requests It is parameter parsing code. It cannot claim the request as malformed (API does not allow it).

Re: isHexDigit error problems and upgrading Tomcat and jdk

2012-06-07 Thread Stefan Mayr
Am 07.06.2012 10:13, schrieb Miguel González Castaños: ... Do you suggest me to upgrade to Tomcat 6 or 7? What about jdk? 1.6 or 1.7? 1.6 is more widely tested (many years), but for a new system I would go with 1.7. It's not a new system, it's been running for 3 years already. I don't want

Re: isHexDigit error problems and upgrading Tomcat and jdk

2012-06-07 Thread Konstantin Kolinko
2012/6/7 Miguel González Castaños miguel_3_gonza...@yahoo.es: On 07/06/2012 00:54, Konstantin Kolinko wrote: 2012/6/7 Miguel González Castañosmiguel_3_gonza...@yahoo.es: Hi,  We are getting isHexDigit errors again, although there is no malformed URL requests It is parameter parsing

Re: isHexDigit error problems and upgrading Tomcat and jdk

2012-06-07 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Miguel, On 6/7/12 4:13 AM, Miguel González Castaños wrote: It's not a new system, it's been running for 3 years already. I don't want to risk that any library has changed its behavior with tomcat 7 or something similar. I don't believe it's less

Re: isHexDigit error problems and upgrading Tomcat and jdk

2012-06-07 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Miguel, On 6/7/12 4:13 AM, Miguel González Castaños wrote: On 07/06/2012 00:54, Konstantin Kolinko wrote: It is parameter parsing code. It cannot claim the request as malformed (API does not allow it). It can only skip malformed parameters.

Re: isHexDigit error problems and upgrading Tomcat and jdk

2012-06-07 Thread Miguel González Castaños
That depends upon how you have configured your access log: you can configure an access log to log only requests that failed and the details of that request like this: Valve className=org.apache.catalina.valves.AccessLogValve conditionIf=org.apache.catalina.parameter_parse_failed

isHexDigit error problems and upgrading Tomcat and jdk

2012-06-06 Thread Miguel González Castaños
Hi, We are getting isHexDigit errors again, although there is no malformed URL requests We are using Tomcat 5.5 and jdk 1.5 (from Sun). As some of you have suggested me in the past, I'm considering to upgrade to a more up-to-date Tomcat and/or jdk so I can get more support and help from

Re: isHexDigit error problems and upgrading Tomcat and jdk

2012-06-06 Thread Konstantin Kolinko
2012/6/7 Miguel González Castaños miguel_3_gonza...@yahoo.es: Hi,  We are getting isHexDigit errors again, although there is no malformed URL requests It is parameter parsing code. It cannot claim the request as malformed (API does not allow it). It can only skip malformed parameters. It

Re: upgrading tomcat when installed via apt-get

2012-01-27 Thread Mark Thomas
On 27/01/2012 21:41, S Ahmed wrote: If I need to upgrade an existing live application that is running off a tomcat install that was installed via apt-get (ubuntu), how would I go about updating tomcat? Don't know. That would be a question for an Ubuntu support forum. I would have to

Re: upgrading tomcat when installed via apt-get

2012-01-27 Thread S Ahmed
But before do that, you would have to know if the tomcat config file has changed format wise correct? e.g. if the server.xml file was updated (I'm sure it is rare but still) Can you please outline exactly what you do to upgrade tomcat? thanks much appreciated! On Fri, Jan 27, 2012 at 4:55 PM,

Re: Upgrading Tomcat need some info

2012-01-26 Thread Josh Gooding
Konstantin - 1. Have you seen the following page? http://tomcat.apache.org/migration.htmlhttp://tomcat.apache.org/migration.html I'm getting there, I'm still perusing the change logs to see what the major differences in between 5.5 and 6 are and from 6 to 7. The application was written

Re: Upgrading Tomcat need some info

2012-01-26 Thread Konstantin Kolinko
2012/1/26 Josh Gooding josh.good...@gmail.com: I've put 6.0.35 on a staging server and I'll be running the feeds I get in tandem through it to see if I get any memory improvement over the 5.5 server.  So as I am thumbing through thr old 5.5 server.xml file I notice something that i've not

Upgrading Tomcat need some info

2012-01-25 Thread Josh Gooding
Hey group, I've been tasked here at work to upgrade Tomcat from 5.5 to 6.0 since I'm the Tomcat guru here. Does anyone know, if I take the 5.5 configuration (server and context.xml) and drop them into 6.0, will the 6.0 server start or are there things that have to be changed over? Also were

Re: Upgrading Tomcat need some info

2012-01-25 Thread David kerber
On 1/25/2012 6:53 AM, Josh Gooding wrote: Hey group, I've been tasked here at work to upgrade Tomcat from 5.5 to 6.0 since I'm Why not TC 7? the Tomcat guru here. Does anyone know, if I take the 5.5 configuration (server and context.xml) and drop them into 6.0, will the 6.0 server start

Re: Upgrading Tomcat need some info

2012-01-25 Thread Konstantin Kolinko
2012/1/25 Josh Gooding josh.good...@gmail.com: Hey group, 1. Have you seen the following page? http://tomcat.apache.org/migration.html I've been tasked here at work to upgrade Tomcat from 5.5 to 6.0 since I'm the Tomcat guru here.  Does anyone know, if I take the 5.5 configuration (server

Re: Upgrading Tomcat need some info

2012-01-25 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Josh, On 1/25/12 6:53 AM, Josh Gooding wrote: I've been tasked here at work to upgrade Tomcat from 5.5 to 6.0 since I'm the Tomcat guru here. Any chance you could get them to go all the way up to 7.0? The difference in migrating from 5.5-6.0 and

Upgrading Tomcat in Place on Linux

2011-11-18 Thread Jonathan Rosenberg
I started a new thread for this, though it';s in response to my earlier message Daniel Mikusa said: You might want to give an updated version of Tomcat 7 a try. 7.0.22 is the latest. What is a good way to upgrade Tomcat in place on a Linux box? -- Jonathan Rosenberg Founder Executive

RE: Upgrading Tomcat in Place on Linux

2011-11-18 Thread Caldarale, Charles R
From: Jonathan Rosenberg [mailto:shmol...@gmail.com] Subject: Upgrading Tomcat in Place on Linux What is a good way to upgrade Tomcat in place on a Linux box? Don't. Install the new Tomcat in a different directory. Ideally, you're keeping your webapps in a location other than inside

RE: Upgrading Tomcat in Place on Linux

2011-11-18 Thread Caldarale, Charles R
From: Caldarale, Charles R Subject: RE: Upgrading Tomcat in Place on Linux What is a good way to upgrade Tomcat in place on a Linux box? Don't. Install the new Tomcat in a different directory. Forgot to mention that you will, of course, have to merge your changes to server.xml and other

Re: Upgrading Tomcat in Place on Linux

2011-11-18 Thread Mark Thomas
On 18/11/2011 22:27, Caldarale, Charles R wrote: From: Caldarale, Charles R Subject: RE: Upgrading Tomcat in Place on Linux What is a good way to upgrade Tomcat in place on a Linux box? Don't. Install the new Tomcat in a different directory. Forgot to mention that you will, of course

upgrading Tomcat v6.0.20

2010-05-12 Thread Althea Martin
Preparing to perform my first Tomcat upgrade. Current Tomcat v6.0.20 upgrading to v6.0.26. My OS is MS Windows Server 2003 SP2. Anything special I need to do or know aside from creating a backup? -Althea

RE: upgrading Tomcat v6.0.20

2010-05-12 Thread Caldarale, Charles R
From: Althea Martin [mailto:althea.mar...@pl.netl.doe.gov] Subject: upgrading Tomcat v6.0.20 Preparing to perform my first Tomcat upgrade. Current Tomcat v6.0.20 upgrading to v6.0.26. My OS is MS Windows Server 2003 SP2. Anything special I need to do or know aside from creating a backup

RE: Upgrading Tomcat from 6.0.14 to 6.0.18 - classpath issue

2009-01-20 Thread Caldarale, Charles R
From: matyg [mailto:ma...@expand.com] Subject: Re: Upgrading Tomcat from 6.0.14 to 6.0.18 - classpath issue 1) (and as far as I know...) the javax/servlet/http/HttpServlet class is located in servlet-api.jar, which located under under tomcat_home/lib. Make sure that's the *only* place

RE: Upgrading Tomcat from 6.0.14 to 6.0.18 - classpath issue

2009-01-20 Thread matyg
-- View this message in context: http://www.nabble.com/Upgrading-Tomcat-from-6.0.14-to-6.0.18---classpath-issue-tp21541405p21577511.html Sent from the Tomcat - User mailing list archive at Nabble.com. - To unsubscribe, e-mail: users

Upgrading Tomcat from 6.0.14 to 6.0.18 - classpath issue

2009-01-19 Thread matyg
this message in context: http://www.nabble.com/Upgrading-Tomcat-from-6.0.14-to-6.0.18---classpath-issue-tp21541405p21541405.html Sent from the Tomcat - User mailing list archive at Nabble.com. - To unsubscribe, e-mail: users-unsubscr

Re: Upgrading Tomcat from 6.0.14 to 6.0.18 - classpath issue

2009-01-19 Thread Konstantin Kolinko
2009/1/19 matyg ma...@expand.com: set

Re: Upgrading Tomcat from 6.0.14 to 6.0.18 - classpath issue

2009-01-19 Thread matyg
...@tomcat.apache.org For additional commands, e-mail: users-h...@tomcat.apache.org -- View this message in context: http://www.nabble.com/Upgrading-Tomcat-from-6.0.14-to-6.0.18---classpath-issue-tp21541405p21543150.html Sent from the Tomcat - User mailing list archive at Nabble.com

RE: Upgrading Tomcat from 6.0.14 to 6.0.18 - classpath issue

2009-01-19 Thread Caldarale, Charles R
From: matyg [mailto:ma...@expand.com] Subject: Re: Upgrading Tomcat from 6.0.14 to 6.0.18 - classpath issue They write there All such classes are visible to both Tomcat internal classes, and to web applications. What I understand is that I need to add classes to the system class loaded

Re: Upgrading Tomcat from 6.0.14 to 6.0.18 - classpath issue

2009-01-19 Thread Pid
matyg wrote: Yes, I know this page, but it is not understoodable from what is described how it should be done. They write there All such classes are visible to both Tomcat internal classes, and to web applications. Classes placed inside a webapp should not be visible to the container. This is

Re: Upgrading Tomcat from 6.0.14 to 6.0.18 - classpath issue

2009-01-19 Thread matyg
For additional commands, e-mail: users-h...@tomcat.apache.org -- View this message in context: http://www.nabble.com/Upgrading-Tomcat-from-6.0.14-to-6.0.18---classpath-issue-tp21541405p21558505.html Sent from the Tomcat - User mailing list archive at Nabble.com

RE: broken webapp after upgrading Tomcat

2008-01-28 Thread ashiers
had to go into it and rename them in uppercase. This issue at least is solved...now I have other issues...more on that later in another post. Alan -- View this message in context: http://www.nabble.com/broken-webapp-after-upgrading-Tomcat-tp15124373p15135210.html Sent from the Tomcat - User

Re: broken webapp after upgrading Tomcat

2008-01-27 Thread Konstantin Kolinko
It is strange. Looks like it should be working. 1) Please check how WEB-INF, classes, mvcs directories and web.xml file names are spelled on the Linux machine. 2) You may configure AccessLogValve in your META-INF/context.xml to log all requests that are coming to your application. See

RE: broken webapp after upgrading Tomcat

2008-01-27 Thread Caldarale, Charles R
From: Konstantin Kolinko [mailto:[EMAIL PROTECTED] Subject: Re: broken webapp after upgrading Tomcat 1) Please check how WEB-INF, classes, mvcs directories and web.xml file names are spelled on the Linux machine. 2) You may configure AccessLogValve in your META-INF/context.xml to log

Re: broken webapp after upgrading Tomcat

2008-01-27 Thread David Smith
My first thought when dealing with linux is to verify the file permissions and/or ownership are set so at minimum the user tomcat is running as has at least read permissions on all the files in your webapp. Otherwise your logs should hold more information regarding what's happening.

Upgrading Tomcat

2007-04-11 Thread Laura McCord
Are there any instructions available on how to upgrade a Tomcat version? I have Tomcat 5.0.28 installed and I want to upgrade to Tomcat 5.5.23 but I can only find installation instructions and no upgrade instructions. -Laura -

Re: Upgrading Tomcat

2007-04-11 Thread Hassan Schroeder
On 4/11/07, Laura McCord [EMAIL PROTECTED] wrote: Are there any instructions available on how to upgrade a Tomcat version? If by upgrade you mean overwrite an existing installation -- I'd suggest you don't really want to do that :-) I have Tomcat 5.0.28 installed and I want to upgrade to

Re: Upgrading Tomcat

2007-04-11 Thread Laura McCord
So, basically I have to setup a new tomcat instance and move all the webapps over to the new install? Hassan Schroeder wrote: On 4/11/07, Laura McCord [EMAIL PROTECTED] wrote: Are there any instructions available on how to upgrade a Tomcat version? If by upgrade you mean overwrite an

Re: Upgrading Tomcat

2007-04-11 Thread Hassan Schroeder
On 4/11/07, Laura McCord [EMAIL PROTECTED] wrote: So, basically I have to setup a new tomcat instance and move all the webapps over to the new install? Well, I upgrade regularly, so I keep my appBase(s) set to directories outside of the Tomcat installations. That way I can toggle test installs

RE: Cannot access external resources from a webapp when upgrading Tomcat above 5.5.9 version.

2006-01-24 Thread Caldarale, Charles R
From: Gema Berdasco [mailto:[EMAIL PROTECTED] Subject: Re: Cannot access external resources from a webapp when upgrading Tomcat above 5.5.9 version. The situation is just you`ve said. Do you know any other way to access to external resources? You can configure a path for your webapp

Cannot access external resources from a webapp when upgrading Tomcat above 5.5.9 version.

2006-01-23 Thread Gema Berdasco
Hello, For a webapp deployed on Tomcat 5.5.9 to access external resources, which we don't want to be deleted when the application is undeployed, we use the following entry on the context.xml file of the webapp: Context docBase=/path/to/resources path=/contents Resources

Re: Cannot access external resources from a webapp when upgrading Tomcat above 5.5.9 version.

2006-01-23 Thread Markus Schönhaber
Gema Berdasco wrote: For a webapp deployed on Tomcat 5.5.9 to access external resources, which we don't want to be deleted when the application is undeployed, we use the following entry on the context.xml file of the webapp: Context docBase=/path/to/resources path=/contents Resources

RE: Cannot access external resources from a webapp when upgrading Tomcat above 5.5.9 version.

2006-01-23 Thread Caldarale, Charles R
From: Gema Berdasco [mailto:[EMAIL PROTECTED] Subject: Cannot access external resources from a webapp when upgrading Tomcat above 5.5.9 version. we use the following entry on the context.xml file of the webapp: Context docBase=/path/to/resources path=/contents Resources className

Re: Cannot access external resources from a webapp when upgrading Tomcat above 5.5.9 version.

2006-01-23 Thread Gema Berdasco
resources from a webapp when upgrading Tomcat above 5.5.9 version. From: Gema Berdasco [mailto:[EMAIL PROTECTED] Subject: Cannot access external resources from a webapp when upgrading Tomcat above 5.5.9 version. we use the following entry on the context.xml file of the webapp: Context docBase

RE: Upgrading Tomcat

2005-12-01 Thread Caldarale, Charles R
From: Rhino [mailto:[EMAIL PROTECTED] Subject: Upgrading Tomcat 1. What are the major differences between the 5.0.x stream and the 5.5.x stream? Lots, especially performance. There are some configuration differences between the two, so read the docs carefully. Consult the changelog

Re: Upgrading Tomcat

2005-12-01 Thread Hassan Schroeder
Rhino wrote: 1. What are the major differences between the 5.0.x stream and the 5.5.x stream? The only one I really care about is 5.5 is perceptibly faster :-) 2. Are 5.5.12 and 5.0.28 both fairly stable and robust? I'm running several production sites on 5.5.9, no problems. 3. Do I need

Re: Upgrading Tomcat

2005-12-01 Thread Mark Thomas
Rhino wrote: 4. Is Sysdeo still the plugin of choice to use for Servlet development in Eclipse? Is Lomboz still the plugin of choice to use for JSP development in Eclipse? (I've never really tried a JSP but I might give it a go one of these days :-) My personal preference is MyEclipse.

RE: Upgrading Tomcat

2005-12-01 Thread Caldarale, Charles R
From: Rhino [mailto:[EMAIL PROTECTED] Subject: Re: Upgrading Tomcat I'm having trouble finding the note you mentioned in the mailing list archives. It's here: http://marc.theaimsgroup.com/?l=tomcat-userm=113332618812952w=2 I'm trying to figure out the following: - does Core include

FW: Upgrading Tomcat

2005-12-01 Thread Alla Winter
that APACHE handles encryption much better than TOMCAT. Is it still true? -Original Message- From: Caldarale, Charles R [mailto:[EMAIL PROTECTED] Sent: Thursday, December 01, 2005 3:05 PM To: Tomcat Users List Subject: RE: Upgrading Tomcat From: Rhino [mailto:[EMAIL PROTECTED] Subject: Re

RE: Upgrading Tomcat

2005-12-01 Thread Nate Rock
@tomcat.apache.org Subject: FW: Upgrading Tomcat Thanks for finding this link. Beside the explanation on various packages of TOMCAT, the message in there also suggests that it is not worthy to use APACHE on a top of TOMCAT due to TOMCAT now is handling static pages almost as good as APACHE. But what

Re: FW: Upgrading Tomcat

2005-12-01 Thread Mark Thomas
Alla Winter wrote: Thanks for finding this link. Beside the explanation on various packages of TOMCAT, the message in there also suggests that it is not worthy to use APACHE on a top of TOMCAT due to TOMCAT now is handling static pages almost as good as APACHE. But what about handling SSL -

RE: Upgrading Tomcat

2005-12-01 Thread Nate Rock
know. -rOcK -Original Message- From: Nate Rock [mailto:[EMAIL PROTECTED] Sent: Thursday, December 01, 2005 3:29 PM To: Tomcat Users List Subject: RE: Upgrading Tomcat The same architecture change that allows tomcat to serve static content quickly (the APR native connector) also

Re: Upgrading Tomcat

2005-12-01 Thread Rhino
@tomcat.apache.org Sent: Thursday, December 01, 2005 4:04 PM Subject: RE: Upgrading Tomcat From: Rhino [mailto:[EMAIL PROTECTED] Subject: Re: Upgrading Tomcat I'm having trouble finding the note you mentioned in the mailing list archives. It's here: http://marc.theaimsgroup.com/?l=tomcat-userm=113332618812952w