diff -r cc682329886b -r b0610cd08440 src/share/jaxws_classes/com/sun/xml/internal/ws/wsdl/writer/WSDLGenerator.java --- a/src/share/jaxws_classes/com/sun/xml/internal/ws/wsdl/writer/WSDLGenerator.java Thu Sep 26 10:43:28 2013 -0700 +++ b/src/share/jaxws_classes/com/sun/xml/internal/ws/wsdl/writer/WSDLGenerator.java Fri Oct 04 16:21:34 2013 +0100 @@ -209,7 +209,7 @@ private final Class implType; private boolean inlineSchemas; // TODO - private final boolean disableSecureXmlProcessing; + private final boolean disableXmlSecurity; /** * Creates the WSDLGenerator @@ -229,12 +229,12 @@ * @param model The {@link AbstractSEIModelImpl} used to generate the WSDL * @param wsdlResolver The {@link WSDLResolver} to use resovle names while generating the WSDL * @param binding specifies which {@link javax.xml.ws.BindingType} to generate - * @param disableSecureXmlProcessing specifies whether to disable the secure xml processing feature + * @param disableXmlSecurity specifies whether to disable the secure xml processing feature * @param extensions an array {@link WSDLGeneratorExtension} that will * be invoked to generate WSDL extensions */ public WSDLGenerator(AbstractSEIModelImpl model, WSDLResolver wsdlResolver, WSBinding binding, Container container, - Class implType, boolean inlineSchemas, boolean disableSecureXmlProcessing, + Class implType, boolean inlineSchemas, boolean disableXmlSecurity, WSDLGeneratorExtension... extensions) { this.model = model; @@ -245,7 +245,7 @@ this.implType = implType; extensionHandlers = new ArrayList(); this.inlineSchemas = inlineSchemas; - this.disableSecureXmlProcessing = disableSecureXmlProcessing; + this.disableXmlSecurity = disableXmlSecurity; // register handlers for default extensions register(new W3CAddressingWSDLGeneratorExtension()); @@ -463,7 +463,7 @@ } } if (resolver.nonGlassfishSchemas != null) { - TransformerFactory tf = XmlUtil.newTransformerFactory(!disableSecureXmlProcessing); + TransformerFactory tf = XmlUtil.newTransformerFactory(!disableXmlSecurity); try { Transformer t = tf.newTransformer(); for (DOMResult xsd : resolver.nonGlassfishSchemas) {