AW: Supportability of Tomcat 9.0.90 and above with JDK 8

2024-10-17 Thread Thomas Hoffmann (Speed4Trade GmbH)
Hello Joseph,

> -Ursprüngliche Nachricht-
> Von: Xavier, Joseph 
> Gesendet: Donnerstag, 17. Oktober 2024 10:59
> An: rainer.j...@kippdata.de
> Cc: Tomcat Users List 
> Betreff: RE: Supportability of Tomcat 9.0.90 and above with JDK 8
> 
> Hi Rainer,
> 
> Thank you for the info. We did look at this matrix but we also found a
> conflicting article as well:
> 
> https://tomcat.apache.org/tomcat-9.0-doc/building.html
> 
> In this, the required JDK version is said to be JDK 11 or above. Can you help 
> me
> understand the differences between the 2 articles?
> 
> Thank you
> Joseph X.
> 


The difference is building and running.
You need a certain JDK for building which might be different from the supported 
runtime environment.


> -Original Message-
> From: Rainer Jung 
> Sent: Thursday, October 17, 2024 1:54 PM
> To: Tomcat Users List 
> Subject: Re: Supportability of Tomcat 9.0.90 and above with JDK 8
> 
> Caution: This email originated from outside of the organization. Review for
> Phishing!
> 
> 
> Am 17.10.24 um 08:27 schrieb Xavier, Joseph:
> > Hi,
> >
> > I wanted to understand whether Tomcat 9.0.90 and above minor versions
> are supported with JDK 8? We have see compile issues when our JDK 8
> environment tried to work with Tomcat 9.0.90.
> > If the supportability is deprecated, is there any doc or public announcement
> stating the same?
> 
> Hi Joseph,
> 
> yes TC 9 is supported with JDK 8 (and higher), see
> 
> https://urldefense.com/v3/__https://tomcat.apache.org/whichversion.html_
> _;!!KpaPruflFCEp!ma-
> 2pPcVOuOsTkmfs7DESyaBow4GmIAfNqWr6x_pYE0_HUDDFMxTLosQB8Y-
> rtDMk7ZVj1BvF8CMlyuVg9x7e9BwtTlq$
> 
> Independent of your JDK 8 problems, you should try to stay current, so
> instead of 9.0.90 use 9.0.96 and define a patch strategy to let your 
> installation
> not diverge too much from 9.0.current.
> 
> Concerning your specific JDK 8 problem you can do a separate post to the list
> describing your observed problem.
> 
> Best regards,
> 
> Rainer
> 
> 
> -
> To unsubscribe, e-mail: users-unsubscr...@tomcat.apache.org
> For additional commands, e-mail: users-h...@tomcat.apache.org



Re: Can't access servlet 404 advise requested

2024-10-17 Thread Holger Klawitter
Hello,

the path in the tomcat manager app brings you to http://localhost/WEBAPP/
or http://localhost/WEBAPP/index.html via HTTP GET. Is your servlet
configured to reply to that url? This is normally done in web.xml with
the  Element.

Moreover: as you seem to be writing a doPost() Method. You will
get a 405 when using HTTP GET via the link at best.


Frank Myers wrote (at 2024-10-16 19:21 +):
> Hi all,
>
> I'm running Tomcat9 on Ubuntu.
> I copied a servlet war (a webhook) file which was automatically deployed in 
> my webapps directory.
> Using the "Tomcat Web Application Manager" I see my servlet path and display 
> name listed.
>
> When I click on the path I get the "HTTP Status 404 – Not Found" and 
> description of "Description The origin server did not find a current 
> representation for the target resource or is not willing to disclose that one 
> exists.".
>
> When I try to drive the URL for the servlet using curl, I get the same 
> message.
>
> Tomcat obviously sees the WAR file and unpacks it, but is not executing the 
> servlet java code.
> In the "dopost()" method, the first thing I do is write to the log:
> resp.setContentType("text/html");
> ServletContext CTX = getServletConfig().getServletContext();
> CTX.log("WHMerge Entered:");
> I check the logs and the message never appears.
>
> I suspect that I made a mistake configuring Tomcat, but am not sure where...
>
> Any advise would be greatly appreciated.
>
> With kindest regards,
>
> Franklin Myers
>
>

--
Mit freundlichem Gruß / With kind regards
  Holger Klawitter
--
listen  klawitter  de

-
To unsubscribe, e-mail: users-unsubscr...@tomcat.apache.org
For additional commands, e-mail: users-h...@tomcat.apache.org



Supportability of Tomcat 9.0.90 and above with JDK 8

2024-10-17 Thread Xavier, Joseph
Hi,

I wanted to understand whether Tomcat 9.0.90 and above minor versions are 
supported with JDK 8? We have see compile issues when our JDK 8 environment 
tried to work with Tomcat 9.0.90.
If the supportability is deprecated, is there any doc or public announcement 
stating the same?



Thank you
Joseph X.



Re: Supportability of Tomcat 9.0.90 and above with JDK 8

2024-10-17 Thread Rainer Jung

Am 17.10.24 um 08:27 schrieb Xavier, Joseph:

Hi,

I wanted to understand whether Tomcat 9.0.90 and above minor versions are 
supported with JDK 8? We have see compile issues when our JDK 8 environment 
tried to work with Tomcat 9.0.90.
If the supportability is deprecated, is there any doc or public announcement 
stating the same?


Hi Joseph,

yes TC 9 is supported with JDK 8 (and higher), see

https://tomcat.apache.org/whichversion.html

Independent of your JDK 8 problems, you should try to stay current, so 
instead of 9.0.90 use 9.0.96 and define a patch strategy to let your 
installation not diverge too much from 9.0.current.


Concerning your specific JDK 8 problem you can do a separate post to the 
list describing your observed problem.


Best regards,

Rainer


-
To unsubscribe, e-mail: users-unsubscr...@tomcat.apache.org
For additional commands, e-mail: users-h...@tomcat.apache.org



RE: Supportability of Tomcat 9.0.90 and above with JDK 8

2024-10-17 Thread Xavier, Joseph
Hi Rainer,

Thank you for the info. We did look at this matrix but we also found a 
conflicting article as well:

https://tomcat.apache.org/tomcat-9.0-doc/building.html

In this, the required JDK version is said to be JDK 11 or above. Can you help 
me understand the differences between the 2 articles?



Thank you
Joseph X.


-Original Message-
From: Rainer Jung  
Sent: Thursday, October 17, 2024 1:54 PM
To: Tomcat Users List 
Subject: Re: Supportability of Tomcat 9.0.90 and above with JDK 8

Caution: This email originated from outside of the organization. Review for 
Phishing!


Am 17.10.24 um 08:27 schrieb Xavier, Joseph:
> Hi,
>
> I wanted to understand whether Tomcat 9.0.90 and above minor versions are 
> supported with JDK 8? We have see compile issues when our JDK 8 environment 
> tried to work with Tomcat 9.0.90.
> If the supportability is deprecated, is there any doc or public announcement 
> stating the same?

Hi Joseph,

yes TC 9 is supported with JDK 8 (and higher), see

https://urldefense.com/v3/__https://tomcat.apache.org/whichversion.html__;!!KpaPruflFCEp!ma-2pPcVOuOsTkmfs7DESyaBow4GmIAfNqWr6x_pYE0_HUDDFMxTLosQB8Y-rtDMk7ZVj1BvF8CMlyuVg9x7e9BwtTlq$

Independent of your JDK 8 problems, you should try to stay current, so instead 
of 9.0.90 use 9.0.96 and define a patch strategy to let your installation not 
diverge too much from 9.0.current.

Concerning your specific JDK 8 problem you can do a separate post to the list 
describing your observed problem.

Best regards,

Rainer


-
To unsubscribe, e-mail: users-unsubscr...@tomcat.apache.org
For additional commands, e-mail: users-h...@tomcat.apache.org



Re: Supportability of Tomcat 9.0.90 and above with JDK 8

2024-10-17 Thread Chuck Caldarale


> On Oct 17, 2024, at 04:01, Thomas Hoffmann (Speed4Trade GmbH) 
>  wrote:
> 
> Hello Joseph,
> 
>> -Ursprüngliche Nachricht-
>> Von: Xavier, Joseph 
>> Gesendet: Donnerstag, 17. Oktober 2024 10:59
>> An: rainer.j...@kippdata.de
>> Cc: Tomcat Users List 
>> Betreff: RE: Supportability of Tomcat 9.0.90 and above with JDK 8
>> 
>> Hi Rainer,
>> 
>> Thank you for the info. We did look at this matrix but we also found a
>> conflicting article as well:
>> 
>> https://tomcat.apache.org/tomcat-9.0-doc/building.html
>> 
>> In this, the required JDK version is said to be JDK 11 or above. Can you 
>> help me
>> understand the differences between the 2 articles?
> 
> 
> The difference is building and running.
> You need a certain JDK for building which might be different from the 
> supported runtime environment.


Point of clarification: JDK 11 is required for building Tomcat itself, not for 
building applications that run under Tomcat. Those can be built with the same 
JDK on which you run Tomcat.

  - Chuck


-
To unsubscribe, e-mail: users-unsubscr...@tomcat.apache.org
For additional commands, e-mail: users-h...@tomcat.apache.org



RE: Can't access servlet 404 advise requested

2024-10-17 Thread Frank Myers
Holger,

I implemented both dopost and doget. Both write contain a write to log. Neither 
seem to execute.

With kindest regards,

Frank

With kindest regards,

Franklin Myers
Developer
ZAPM Software Development
SWG - IBM
614-284-2151

From: Holger Klawitter 
Sent: Thursday, October 17, 2024 3:51:45 AM
To: Tomcat Users List 
Subject: [EXTERNAL] Re: Can't access servlet 404 advise requested

Hello,

the path in the tomcat manager app brings you to http://localhost/WEBAPP/
or http://localhost/WEBAPP/index.html  via HTTP GET. Is your servlet
configured to reply to that url? This is normally done in web.xml with
the  Element.

Moreover: as you seem to be writing a doPost() Method. You will
get a 405 when using HTTP GET via the link at best.


Frank Myers wrote (at 2024-10-16 19:21 +):
> Hi all,
>
> I'm running Tomcat9 on Ubuntu.
> I copied a servlet war (a webhook) file which was automatically deployed in 
> my webapps directory.
> Using the "Tomcat Web Application Manager" I see my servlet path and display 
> name listed.
>
> When I click on the path I get the "HTTP Status 404 ? Not Found" and 
> description of "Description The origin server did not find a current 
> representation for the target resource or is not willing to disclose that one 
> exists.".
>
> When I try to drive the URL for the servlet using curl, I get the same 
> message.
>
> Tomcat obviously sees the WAR file and unpacks it, but is not executing the 
> servlet java code.
> In the "dopost()" method, the first thing I do is write to the log:
> resp.setContentType("text/html");
> ServletContext CTX = getServletConfig().getServletContext();
> CTX.log("WHMerge Entered:");
> I check the logs and the message never appears.
>
> I suspect that I made a mistake configuring Tomcat, but am not sure where...
>
> Any advise would be greatly appreciated.
>
> With kindest regards,
>
> Franklin Myers
>
>

--
Mit freundlichem Gru? / With kind regards
  Holger Klawitter
--
listen  klawitter  de

-
To unsubscribe, e-mail: users-unsubscr...@tomcat.apache.org
For additional commands, e-mail: users-h...@tomcat.apache.org



Re: stack trace from tomcat when I try to start my webpage on my LAN

2024-10-17 Thread Zdeněk Henek
Tomcat has migration tool for older applications
https://tomcat.apache.org/download-migration.cgi

Best would be to rewrite the app to import jakartaee package (JakartaEE)
instead of javax (JavaEE) and upgrade all libraries you use in the war to
be JakartaEE compatible.

Zdenek

On Wed, Oct 16, 2024 at 10:14 PM Rob Sargent  wrote:

>
> You should not see "javax" in current tomcat work. Check your tag library
> dependancy
>
>
> -
> To unsubscribe, e-mail: users-unsubscr...@tomcat.apache.org
> For additional commands, e-mail: users-h...@tomcat.apache.org
>
>


stack trace from tomcat when I try to start my webpage on my LAN

2024-10-17 Thread Jim Anderson



I am re-posting a post that I thought I made yesterday. It did not show 
up in my mail from users@tomcat.apache.org, hence I am trying again. My 
apologies if anyone receives both of my posts.


I am trying to start up an webpage to use as a demo. I am using tomcat 
11.  I have been looking at the error but have made no progress figuring 
out the problem. Below I am including the stack trace I am getting from 
tomcat and would appreciated any guidance on finding the source of my 
problem and how to fix it.


The problem occurs when I am in firefox and I enter the url of 
application, e.g. I enter the following URL:


    localhost:8080/theApp


The  is shown in my postscript.

Thanks for any advise!

Jim A.


_

postscript

__

HTTP Status 500 – Internal Server Error

Type Exception Report

Message java.lang.NoClassDefFoundError: 
javax/servlet/jsp/tagext/TagLibraryValidator


Description The server encountered an unexpected condition that 
prevented it from fulfilling the request.


Exception

jakarta.servlet.ServletException: java.lang.NoClassDefFoundError: 
javax/servlet/jsp/tagext/TagLibraryValidator

 org.apache.jasper.servlet.JspServlet.service(JspServlet.java:307)
    jakarta.servlet.http.HttpServlet.service(HttpServlet.java:716)
 org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51)
 
org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:483)
 org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:93)
 
org.apache.catalina.valves.AbstractAccessLogValve.invoke(AbstractAccessLogValve.java:663)
 org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:342)
 org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:382)
 
org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63)
 
org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:905)
 
org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1746)
 org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52)
 
org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1148)
 
org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:636)
 
org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63)
    java.base/java.lang.Thread.run(Thread.java:833)


-
To unsubscribe, e-mail: users-unsubscr...@tomcat.apache.org
For additional commands, e-mail: users-h...@tomcat.apache.org



Tomcat 11.0

2024-10-17 Thread Mcalexander, Jon J.
Question.

With the latest release, is Tomcat 11.0.0 still Alpha, or is it now in Stable 
mode?

Thanks,

Dream * Excel * Explore * Inspire
Jon McAlexander | Senior Infrastructure Engineer | Middleware/App Hosting | FHP 
| CTO | Wells Fargo Technology
8080 Cobblestone Rd | Urbandale, IA 50322 MAC: F4469-010  | +1 515 988 2508 | 
jonmcalexan...@gmail.com
This message may contain confidential and/or privileged information. If you are 
not the addressee or authorized to receive this for the addressee, you must not 
use, copy, disclose, or take any action based on this message or any 
information herein. If you have received this message in error, please advise 
the sender immediately by reply e-mail and delete this message. Thank you for 
your cooperation.



Re: stack trace from tomcat when I try to start my webpage on my LAN

2024-10-17 Thread Chuck Caldarale


> On Oct 17, 2024, at 11:38, Jim Anderson  wrote:
> 
> I am re-posting a post that I thought I made yesterday. It did not show up in 
> my mail from users@tomcat.apache.org, hence I am trying again. My apologies 
> if anyone receives both of my posts.


Everyone on the list has received both of your posts, and two responses have 
been sent (not counting this one). The mailing list avoids echoing a message 
back to the sender.

  - Chuck


> I am trying to start up an webpage to use as a demo. I am using tomcat 11.  I 
> have been looking at the error but have made no progress have been sent (not 
> coess figuring out the problem. Below I am including the stack trace I am 
> getting from tomcat and would appreciated any guidance on finding the source 
> of my problem and how to fix it.
> 
> The problem occurs when I am in firefox and I enter the url of application, 
> e.g. I enter the following URL:
> 
> localhost:8080/theApp
> 
> 
> The  is shown in my postscript.
> 
> Thanks for any advise!
> 
> Jim A.
> 
> 
> _
> 
> postscript
> 
> __
> 
> HTTP Status 500 – Internal Server Error
> 
> Type Exception Report
> 
> Message java.lang.NoClassDefFoundError: 
> javax/servlet/jsp/tagext/TagLibraryValidator
> 
> Description The server encountered an unexpected condition that prevented it 
> from fulfilling the request.
> 
> Exception
> 
> jakarta.servlet.ServletException: java.lang.NoClassDefFoundError: 
> javax/servlet/jsp/tagext/TagLibraryValidator
>  org.apache.jasper.servlet.JspServlet.service(JspServlet.java:307)
> jakarta.servlet.http.HttpServlet.service(HttpServlet.java:716)
>  org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51)
>  
> org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:483)
>  org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:93)
>  
> org.apache.catalina.valves.AbstractAccessLogValve.invoke(AbstractAccessLogValve.java:663)
>  org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:342)
>  org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:382)
>  
> org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63)
>  
> org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:905)
>  
> org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1746)
>  
> org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52)
>  
> org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1148)
>  
> org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:636)
>  
> org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63)
> java.base/java.lang.Thread.run(Thread.java:833)
> 
> 
> -
> To unsubscribe, e-mail: users-unsubscr...@tomcat.apache.org
> For additional commands, e-mail: users-h...@tomcat.apache.org
> 


-
To unsubscribe, e-mail: users-unsubscr...@tomcat.apache.org
For additional commands, e-mail: users-h...@tomcat.apache.org



Re: Tomcat 11.0

2024-10-17 Thread Chuck Caldarale


> On Oct 17, 2024, at 11:45, Mcalexander, Jon J. 
>  wrote:
> 
> Question.
> 
> With the latest release, is Tomcat 11.0.0 still Alpha, or is it now in Stable 
> mode?


Stable.

  - Chuck


-
To unsubscribe, e-mail: users-unsubscr...@tomcat.apache.org
For additional commands, e-mail: users-h...@tomcat.apache.org



RE: Can't access servlet 404 advise requested

2024-10-17 Thread Frank Myers
I see in the catalina log:
17-Oct-2024 13:57:11.194 INFO [http-nio-8080-exec-30] 
org.apache.catalina.core.StandardContext.reload Reloading Context with name 
[/WHMerge] has started
17-Oct-2024 13:57:11.196 WARNING [http-nio-8080-exec-30] 
org.apache.catalina.loader.WebappClassLoaderBase.clearReferencesObjectStreamClassCaches
 Failed to clear soft references from ObjectStreamClass$Caches for web 
application [WHMerge]
java.lang.ClassCastException: class java.io.ObjectStreamClass$Caches$1 
cannot be cast to class java.util.Map (java.io.ObjectStreamClass$Caches$1 and 
java.util.Map are in module java.base of loader 'bootstrap')
at 
org.apache.catalina.loader.WebappClassLoaderBase.clearCache(WebappClassLoaderBase.java:2325)
at 
org.apache.catalina.loader.WebappClassLoaderBase.clearReferencesObjectStreamClassCaches(WebappClassLoaderBase.java:2300)
at 
org.apache.catalina.loader.WebappClassLoaderBase.clearReferences(WebappClassLoaderBase.java:1669)
at 
org.apache.catalina.loader.WebappClassLoaderBase.stop(WebappClassLoaderBase.java:1597)
at 
org.apache.catalina.loader.WebappLoader.stopInternal(WebappLoader.java:463)
at 
org.apache.catalina.util.LifecycleBase.stop(LifecycleBase.java:257)
at 
org.apache.catalina.core.StandardContext.stopInternal(StandardContext.java:5515)
at 
org.apache.catalina.util.LifecycleBase.stop(LifecycleBase.java:257)
at 
org.apache.catalina.core.StandardContext.reload(StandardContext.java:3811)
at 
org.apache.catalina.manager.ManagerServlet.reload(ManagerServlet.java:1132)
at 
org.apache.catalina.manager.HTMLManagerServlet.reload(HTMLManagerServlet.java:644)
at 
org.apache.catalina.manager.HTMLManagerServlet.doPost(HTMLManagerServlet.java:215)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:681)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:764)
at 
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227)
at 
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)
at 
org.apache.catalina.filters.CsrfPreventionFilter.doFilter(CsrfPreventionFilter.java:211)
at 
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)
at 
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)
at 
org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53)
at 
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)
at 
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)
at 
org.apache.catalina.filters.HttpHeaderSecurityFilter.doFilter(HttpHeaderSecurityFilter.java:126)
at 
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189)
at 
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162)
at 
org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:197)
at 
org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97)
at 
org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:659)
at 
org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135)
at 
org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92)
at 
org.apache.catalina.valves.AbstractAccessLogValve.invoke(AbstractAccessLogValve.java:687)
at 
org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78)
at 
org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:359)
at 
org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399)
at 
org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65)
at 
org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:889)
at 
org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1735)
at 
org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49)
at 
org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191)
at 
org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659)
at 
org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61)
at java.base/java.lang.Thread.run(Thread.java:840)
17-Oc

RE: Tomcat 11.0

2024-10-17 Thread Mcalexander, Jon J.
Thank you!

From: Chuck Caldarale 
Sent: Thursday, October 17, 2024 12:04 PM
To: Tomcat Users List 
Subject: Re: Tomcat 11.0

> On Oct 17, 2024, at 11: 45, Mcalexander, Jon J.  com. INVALID> wrote: > > Question. > > With the latest release, is Tomcat 11. 
> 0. 0 still Alpha, or is it now in Stable mode? Stable. - Chuck 
> -




> On Oct 17, 2024, at 11:45, Mcalexander, Jon J. 
> mailto:jonmcalexan...@wellsfargo.com.INVALID>>
>  wrote:

>

> Question.

>

> With the latest release, is Tomcat 11.0.0 still Alpha, or is it now in Stable 
> mode?





Stable.



  - Chuck





-

To unsubscribe, e-mail: 
users-unsubscr...@tomcat.apache.org

For additional commands, e-mail: 
users-h...@tomcat.apache.org