Even after the PR there is still an issue with RequestContextTest where it throws following exception on JDK 11 (8 works):
09:58:42 testRequestScopeActiveDuringWebServiceInvocation(org.jboss.cdi.tck.tests.context.request.ws.RequestContextTest) Time elapsed: 0.175 sec <<< FAILURE!
09:58:42 java.lang.Error: javax.xml.soap.SOAPException: Unable to create SAAJ meta-factoryProvider com.sun.xml.internal.messaging.saaj.soap.SAAJMetaFactoryImpl not found
09:58:42 at org.jboss.cdi.tck.tests.context.request.ws.RequestContextTest.testRequestScopeActiveDuringWebServiceInvocation(RequestContextTest.java:74)
09:58:42 Caused by: javax.xml.soap.SOAPException: Unable to create SAAJ meta-factoryProvider com.sun.xml.internal.messaging.saaj.soap.SAAJMetaFactoryImpl not found
09:58:42 at org.jboss.cdi.tck.tests.context.request.ws.RequestContextTest.testRequestScopeActiveDuringWebServiceInvocation(RequestContextTest.java:74)
I suspect this is some bit that was formerly part of JDK and was then extracted into some separate project. I am trying to figure out which one it is and we can then put it into a profile that's only active in JDK 11 and with tck12 param. |