jaxws/src/jdk.xml.ws/share/classes/com/sun/tools/internal/ws/wsdl/parser/Internalizer.java
changeset 29839 6d5d546e953b
parent 25871 b80b84e87032
equal deleted inserted replaced
29838:fe5fd9871a13 29839:6d5d546e953b
     1 /*
     1 /*
     2  * Copyright (c) 1997, 2014, Oracle and/or its affiliates. All rights reserved.
     2  * Copyright (c) 1997, 2015, Oracle and/or its affiliates. All rights reserved.
     3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     4  *
     4  *
     5  * This code is free software; you can redistribute it and/or modify it
     5  * This code is free software; you can redistribute it and/or modify it
     6  * under the terms of the GNU General Public License version 2 only, as
     6  * under the terms of the GNU General Public License version 2 only, as
     7  * published by the Free Software Foundation.  Oracle designates this
     7  * published by the Free Software Foundation.  Oracle designates this
    76     }
    76     }
    77 
    77 
    78     private static final ContextClassloaderLocal<XPathFactory> xpf = new ContextClassloaderLocal<XPathFactory>() {
    78     private static final ContextClassloaderLocal<XPathFactory> xpf = new ContextClassloaderLocal<XPathFactory>() {
    79         @Override
    79         @Override
    80         protected XPathFactory initialValue() throws Exception {
    80         protected XPathFactory initialValue() throws Exception {
    81             return XPathFactory.newInstance();
    81             return XmlUtil.newXPathFactory(true);
    82         }
    82         }
    83     };
    83     };
    84     /**
    84     /**
    85      * Validates attributes of a &lt;JAXWS:bindings> element.
    85      * Validates attributes of a &lt;JAXWS:bindings> element.
    86      */
    86      */