JDK-8073374 : Re-examine jdk.xml.ws dependency on java.xml.ws SOAPNamespaceConstants
  • Type: Bug
  • Component: xml
  • Sub-Component: jax-ws
  • Affected Version: 9
  • Priority: P4
  • Status: Resolved
  • Resolution: Fixed
  • Submitted: 2015-02-17
  • Updated: 2015-06-04
  • Resolved: 2015-02-20
The Version table provides details related to the release that this issue/RFE will be addressed.

Unresolved : Release in which this issue/RFE will be addressed.
Resolved: Release in which this issue/RFE has been resolved.
Fixed : Release in which this issue/RFE has been fixed. The release containing this fix may be available for download as an Early Access Release or a General Availability Release.

To download the current JDK release, click here.
JDK 9
9 b53Fixed
Related Reports
Blocks :  
Relates :  
Relates :  
Description
src/jdk.xml.ws/share/classes/com/sun/tools/internal/ws/wsdl/document/soap/SOAPConstants.java

public static final String URI_ENVELOPE = SOAPNamespaceConstants.ENVELOPE;

This dependency requires a qualified export of com.sun.xml.internal.ws.encoding.soap.streaming package from java.xml.ws to jdk.xml.ws module which is currently missing in modules.xml.

maybe another option is to replace it with
    public static final String URI_ENVELOPE = "http://schemas.xmlsoap.org/soap/envelope/";