Re: ClassNotFound after upgrade to tomcat 10

2023-04-20 Thread Kevin Huntly
I chose option 1 and re-wrote everything. It was fun Kevin Huntly Email: kmhun...@gmail.com Cell: 716/424-3311 -BEGIN GEEK CODE BLOCK- Version: 1.0 GCS/IT d+ s a C++ UL+++$ P+(++) L+++ E---

Re: ClassNotFound after upgrade to tomcat 10

2023-04-20 Thread Christopher Schultz
Kevin, On 4/17/23 17:56, Kevin Huntly wrote: I'm getting the following exception when I try to access my webapp: 17-Apr-2023 17:52:55.982 SEVERE [catalina-exec-1] org.apache.catalina.core.ApplicationDispatcher.invoke Servlet.service() for servlet [jsp] threw exception

Re: ClassNotFound after upgrade to tomcat 10

2023-04-17 Thread Terence M. Bandoian
On 4/17/2023 6:13 PM, Kevin Huntly wrote: Thank you, all set. I guess I wasn't googling the right things lol, either that or I'm getting a little too used to asking on the list =( Yes. -Terence Bandoian On Mon, Apr 17, 2023 at 7:03 PM Torsten Krah wrote: The whole thing is also well

Re: ClassNotFound after upgrade to tomcat 10

2023-04-17 Thread Kevin Huntly
Just another quick question... and it may not be able to be answered here... Is there a way to get Eclipse to stop bitching about missing "javax.servlet.*" dependencies? It's complaining on every JSP I have... Kevin Huntly Email:

Re: ClassNotFound after upgrade to tomcat 10

2023-04-17 Thread Kevin Huntly
Thank you, all set. I guess I wasn't googling the right things lol, either that or I'm getting a little too used to asking on the list =( Kevin Huntly Email: kmhun...@gmail.com Cell: 716/424-3311

Re: ClassNotFound after upgrade to tomcat 10

2023-04-17 Thread Torsten Krah
The whole thing is also well answered there btw: https://stackoverflow.com/questions/4928271/how-to-install-jstl-the-absolute-uri-http-java-sun-com-jstl-core-cannot-be-r#4928309 Kevin Huntly schrieb am Di., 18. Apr. 2023, 00:52: > I am now seeing this: > > 17-Apr-2023 18:50:44.450 SEVERE

Re: ClassNotFound after upgrade to tomcat 10

2023-04-17 Thread Torsten Krah
https://stackoverflow.com/questions/74585710/migration-to-jakarta-ee-unable-to-find-taglib-c-for-uri-jakarta-tags-core Does that help? Kevin Huntly schrieb am Di., 18. Apr. 2023, 00:52: > I am now seeing this: > > 17-Apr-2023 18:50:44.450 SEVERE [catalina-exec-1] >

Re: ClassNotFound after upgrade to tomcat 10

2023-04-17 Thread Kevin Huntly
I am now seeing this: 17-Apr-2023 18:50:44.450 SEVERE [catalina-exec-1] org.apache.catalina.core.ApplicationDispatcher.invoke Servlet.service() for servlet [jsp] threw exception org.apache.jasper.JasperException: /com.cws.esolutions.web.login/jsp/html/en/Login.jsp (line: [1], column: [1])

Re: ClassNotFound after upgrade to tomcat 10

2023-04-17 Thread Torsten Krah
And update your taglib definitions, see here: https://jakarta.ee/specifications/tags/3.0/ The old ones are deprecated/ removed: Quote: Rename java.sun.com taglib URIs to new jakarta.tags.* URNs. Kevin Huntly schrieb am Di., 18. Apr. 2023, 00:34: > Now i'm getting these: > > 17-Apr-2023

Re: ClassNotFound after upgrade to tomcat 10

2023-04-17 Thread Mark Eggers
https://jakarta.ee/specifications/tags/3.0/tagdocs/c/tld-summary.html . . . just my two cents /mde/ On 4/17/2023 3:34 PM, Kevin Huntly wrote: Now i'm getting these: 17-Apr-2023 18:32:03.236 INFO [main] org.apache.catalina.core.ApplicationContext.log No Spring WebApplicationInitializer types

Re: ClassNotFound after upgrade to tomcat 10

2023-04-17 Thread Torsten Krah
The Jakarta jstl ones have to be compile scope, they are not included in tomcat, do you have that? See the migration guide, spec section, only those APIs listed there should be provided scope. Kevin Huntly schrieb am Di., 18. Apr. 2023, 00:34: > Now i'm getting these: > > 17-Apr-2023

Re: ClassNotFound after upgrade to tomcat 10

2023-04-17 Thread Kevin Huntly
Now i'm getting these: 17-Apr-2023 18:32:03.236 INFO [main] org.apache.catalina.core.ApplicationContext.log No Spring WebApplicationInitializer types detected on classpath 17-Apr-2023 18:32:04.904 INFO [main] org.apache.catalina.core.ApplicationContext.log Initializing Spring DispatcherServlet

Re: ClassNotFound after upgrade to tomcat 10

2023-04-17 Thread Torsten Krah
You should only use https://jakarta.ee/specifications/tags/3.0/ and not the old 1.2.5 one, remove that old one. Why do you have both included? Kevin Huntly schrieb am Di., 18. Apr. 2023, 00:19: > 6.0.0 > > 1.2.5 > > 3.0.0 > > 3.1.1 > > > Kevin

Re: ClassNotFound after upgrade to tomcat 10

2023-04-17 Thread Kevin Huntly
6.0.0 1.2.5 3.0.0 3.1.1 Kevin Huntly Email: kmhun...@gmail.com Cell: 716/424-3311 -BEGIN GEEK CODE BLOCK- Version: 1.0 GCS/IT d+ s a C++ UL+++$ P+(++) L+++ E--- W+++ N+ o K(+) w--- O- M--

Re: ClassNotFound after upgrade to tomcat 10

2023-04-17 Thread Torsten Krah
All the api ones have to be provided, not compile scope imho. Tomcat does provide them, don't package them in your war file and double check the versions from the guide, there is still a class referencing the old API and is causing the exception. You missed to add the versions you used, add them

Re: ClassNotFound after upgrade to tomcat 10

2023-04-17 Thread Kevin Huntly
Thank you for that... I have the right (I think) dependencies in my pom: org.apache.taglibs taglibs-standard-impl ${taglibs.version} jar compile jakarta.servlet.jsp.jstl jakarta.servlet.jsp.jstl-api ${jstl.version} jar compile jakarta.servlet.jsp jakarta.servlet.jsp-api

Re: ClassNotFound after upgrade to tomcat 10

2023-04-17 Thread Torsten Krah
Please read https://tomcat.apache.org/migration-10.html#Server_Pages_3.0 and while you are there, read the whole guide ;-). Kevin Huntly schrieb am Mo., 17. Apr. 2023, 23:57: > Hello, > > I'm getting the following exception when I try to access my webapp: > > 17-Apr-2023 17:52:55.982 SEVERE

ClassNotFound after upgrade to tomcat 10

2023-04-17 Thread Kevin Huntly
Hello, I'm getting the following exception when I try to access my webapp: 17-Apr-2023 17:52:55.982 SEVERE [catalina-exec-1] org.apache.catalina.core.ApplicationDispatcher.invoke Servlet.service() for servlet [jsp] threw exception java.lang.ClassNotFoundException: