Re: Question about upgrading tomcat-embed-core from 10.1.20 to 10.1.25

2024-09-15 Thread Chuck Caldarale
og.html The 10.1.29 HTTP/2 problem and fix are described here: https://bz.apache.org/bugzilla/show_bug.cgi?id=69320 - Chuck > From: Mark Thomas > Sent: Sunday, September 15, 2024 9:14 AM > To: users@tomcat.apache.org > Subject: Re: Question about upgrading tomcat-embed-core from 10.1.

RE: Question about upgrading tomcat-embed-core from 10.1.20 to 10.1.25

2024-09-15 Thread KARR, DAVID
Thanks for that. Could you give me more info on those problems in 10.1.24-29, like links to the issues? From: Mark Thomas Sent: Sunday, September 15, 2024 9:14 AM To: users@tomcat.apache.org Subject: Re: Question about upgrading tomcat-embed-core from 10.1.20 to 10.1.25 On 15/09/2024 00: 37

Re: Question about upgrading tomcat-embed-core from 10.1.20 to 10.1.25

2024-09-15 Thread Mark Thomas
On 15/09/2024 00:37, KARR, DAVID wrote: We build SpringBoot applications that reference "tomcat-embed-core" from "spring-boot-starter-jersey". We currently end up with version 10.1.20 of tomcat-embed-core, using spring-boot 3.2.5. There is apparently a CVE for that version of tomcat-embed-

Question about upgrading tomcat-embed-core from 10.1.20 to 10.1.25

2024-09-14 Thread KARR, DAVID
We build SpringBoot applications that reference "tomcat-embed-core" from "spring-boot-starter-jersey". We currently end up with version 10.1.20 of tomcat-embed-core, using spring-boot 3.2.5. There is apparently a CVE for that version of tomcat-embed-core (I don't have the CVE handy right now).

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 P

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 i

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 mig

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 fra

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: java.lan

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 org.apache.jasper.compiler.Validator.validateEx

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 the

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 = myPluginLoader.getResources(r

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 org.eclipse.osgi.internal.loader.Equin

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 im

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 t

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 t

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: > https://bz.apache.org/bugzilla/show_bug.

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 w

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 LogF

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 it'

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 getResources("commons-logging.prop

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 19/1

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 Tom

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 ou

Re: 400 error when upgrading tomcat

2020-09-10 Thread Mark Thomas
opher 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 >>>> fail

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 serv

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 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 configuration, taking into account changes

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 and/or

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

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

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 top

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 > installa

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 verify

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. 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

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)

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 serv

Re: Upgrading Tomcat 7.0.29 windows service

2012-11-25 Thread Mark Thomas
"Łukasz Matuszewski" 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 appriopriate >place in >my A

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: Best practices for upgrading Tomcat on Windows?

2012-09-20 Thread Brett Delle Grazie
On 19 September 2012 23:58, Christopher Schultz 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 a

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 remov

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 ve

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: >> >> > cond

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: You will probably want to put "%t" and "%r" in your pattern. This looks interesting. In my test environment (with Tomcat 7 a

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 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 les

Re: isHexDigit error problems and upgrading Tomcat and jdk

2012-06-07 Thread Konstantin Kolinko
2012/6/7 Miguel González Castaños : > On 07/06/2012 00:54, Konstantin Kolinko wrote: >> >> 2012/6/7 Miguel González Castaños: >>> >>> Hi, >>> >>>  We are getting isHexDigit errors again, although there is no malformed >>> URL >>> requests >> >> It is parameter parsing code. It cannot claim the requ

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 t

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ños: 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

Re: isHexDigit error problems and upgrading Tomcat and jdk

2012-06-06 Thread Konstantin Kolinko
2012/6/7 Miguel González Castaños : > 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 sets some error flag that

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: 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 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 under

Re: Upgrading Tomcat need some info

2012-01-26 Thread Konstantin Kolinko
2012/1/26 Josh Gooding : > > 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 encountered with 6.

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.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

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

Re: Upgrading Tomcat need some info

2012-01-25 Thread Konstantin Kolinko
2012/1/25 Josh Gooding : > 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 and context.xml) a

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

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 ther

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 dire

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 change

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 locatio

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 Dire

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 asi

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 from 6.0.14 to 6.0.18 - classpath issue

2009-01-20 Thread matyg
.jar jmxtools.jar jsr173_1.0_api.jar jsse.jar jta-1.1.jar org.mortbay.jetty-4.2.17.jar struts.jar strutstest-2.1.3.jar taglibs-datetime.jar tar.jar -- 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

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 > /lib. Make sure that'

Re: Upgrading Tomcat from 6.0.14 to 6.0.18 - classpath issue

2009-01-19 Thread matyg
nstantin Kolinko >>> >>> - >>> To unsubscribe, e-mail: users-unsubscr...@tomcat.apache.org >>> For additional commands, e-mail: users-h...@tomcat.apache.org >>> >>> >>>

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. Th

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 c

Re: Upgrading Tomcat from 6.0.14 to 6.0.18 - classpath issue

2009-01-19 Thread matyg
> To unsubscribe, e-mail: users-unsubscr...@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-is

Re: Upgrading Tomcat from 6.0.14 to 6.0.18 - classpath issue

2009-01-19 Thread Konstantin Kolinko
2009/1/19 matyg : > > set > CLASSPATH=%CLASSPATH%;.;%CATALINA_HOME%\lib;%CATALINA_HOME%\lib\servlet-api.jar;%CATALINA_HOME%\lib\jsp-api.jar;%CATALINA_HOME%\lib\el-api.jar;%CATALINA_HOME%\webapps\webAppName;%CATALINA_HOME%\webapps\webAppName\WEB_INF\classes;%CATALINA_HOME%\webapps\webAppName\WEB_INF

Upgrading Tomcat from 6.0.14 to 6.0.18 - classpath issue

2009-01-19 Thread matyg
elp? Thanks. -- View 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 unsubsc

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 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. --David

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 ME

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 http://tomc

broken webapp after upgrading Tomcat

2008-01-27 Thread ashiers
ny ideas as to what maybe going on? Maybe Tomcat 6.0 requires something different in the web.xml file? Maybe Tomcat 6.0 requires something more that I don't have in the webapp? Please advise, Alan -- View this message in context: http://www.nabble.com/broken-webapp-after-upgrading-Tomcat-tp15

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 install

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

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 t

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 - To

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 configu

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

2006-01-23 Thread Gema Berdasco
al 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

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: > > > className="org.apache.na

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: > > > > > > Having configured this, we can access the files u

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: Having configured this, we can access the files under /path/to/resources throu

Re: Upgrading Tomcat

2005-12-01 Thread Rhino
sers List" 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=tomca

RE: Upgrading Tomcat

2005-12-01 Thread Nate Rock
et me 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)

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 - some

RE: Upgrading Tomcat

2005-12-01 Thread Caldarale, Charles R
> From: Alla Winter [mailto:[EMAIL PROTECTED] > Subject: FW: Upgrading Tomcat > > But what about handling SSL - somewhere I read that APACHE handles > encryption much better than TOMCAT. Is it still true? In theory, doing SSL encryption in native code should be faster than Ja

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

FW: Upgrading Tomcat

2005-12-01 Thread Alla Winter
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] > Subje

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-user&m=113332618812952&w=2 > I'm trying to

Re: Upgrading Tomcat

2005-12-01 Thread Rhino
Rhino - Original Message - From: "Caldarale, Charles R" <[EMAIL PROTECTED]> To: "Tomcat Users List" Sent: Thursday, December 01, 2005 1:23 PM Subject: RE: Upgrading Tomcat From: Rhino [mailto:[EMAIL PROTECTED] Subject: Upgrading Tomcat 1. What are the major

  1   2   >