diff -r cc682329886b -r b0610cd08440 src/share/jaxws_classes/com/sun/tools/internal/ws/wsdl/parser/DOMForest.java --- a/src/share/jaxws_classes/com/sun/tools/internal/ws/wsdl/parser/DOMForest.java Thu Sep 26 10:43:28 2013 -0700 +++ b/src/share/jaxws_classes/com/sun/tools/internal/ws/wsdl/parser/DOMForest.java Fri Oct 04 16:21:34 2013 +0100 @@ -114,7 +114,7 @@ this.logic = logic; try { // secure xml processing can be switched off if input requires it - boolean secureProcessingEnabled = options == null || !options.disableSecureXmlProcessing; + boolean secureProcessingEnabled = options == null || !options.disableXmlSecurity; DocumentBuilderFactory dbf = XmlUtil.newDocumentBuilderFactory(secureProcessingEnabled); dbf.setNamespaceAware(true); this.documentBuilder = dbf.newDocumentBuilder(); @@ -365,7 +365,7 @@ try { // create identity transformer // secure xml processing can be switched off if input requires it - boolean secureProcessingEnabled = options == null || !options.disableSecureXmlProcessing; + boolean secureProcessingEnabled = options == null || !options.disableXmlSecurity; TransformerFactory tf = XmlUtil.newTransformerFactory(secureProcessingEnabled); Transformer it = tf.newTransformer();