> On Jul 23, 2019, at 6:03 AM, Jean-Louis Monteiro <[email protected]> > wrote: > > Hi all, with Java 11, we have to provide additional jars. > > JAXB API and JAXB IMPL are 2 of them.
On this one, we actually had this issue in TomEE 1.x as the version of JAXB was not what we needed. We were forced to overwrite the JVMs impl and api by adding this to the endorsed directory: - apache-tomee-plus-1.7.5/endorsed/jaxb-api.jar - apache-tomee-plus-1.7.5/lib/jaxb-core-2.2.7.jar - apache-tomee-plus-1.7.5/lib/jaxb-impl.jar - apache-tomee-plus-1.7.5/lib/sxc-jaxb-core-0.8.jar > JAX-WS implementation > > They usually are under com.sun.* groupId. > > The JAX-WS dependency specifically seems to bring the entire world, > including Glassfish and other stuff. Not sure if we can bring back old > dependencies. Some more detail on these when you get it will help. We never used the JVM impl of javax.xml.ws and opted instead to use CXF. We should theoretically be good without anything GlassFish related. -David
