jaxws/src/java.xml.ws/share/classes/com/sun/xml/internal/ws/client/WSServiceDelegate.java
changeset 32795 5a5710ee05a0
parent 29952 6cccd9075e2f
equal deleted inserted replaced
32712:f61a63b7d1e5 32795:5a5710ee05a0
   339     }
   339     }
   340 
   340 
   341     /**
   341     /**
   342      * Parses the WSDL and builds {@link com.sun.xml.internal.ws.api.model.wsdl.WSDLModel}.
   342      * Parses the WSDL and builds {@link com.sun.xml.internal.ws.api.model.wsdl.WSDLModel}.
   343      * @param wsdlDocumentLocation
   343      * @param wsdlDocumentLocation
   344      *      Either this or <tt>wsdl</tt> parameter must be given.
   344      *      Either this or {@code wsdl} parameter must be given.
   345      *      Null location means the system won't be able to resolve relative references in the WSDL,
   345      *      Null location means the system won't be able to resolve relative references in the WSDL.
   346      */
   346      */
   347     private WSDLModel parseWSDL(URL wsdlDocumentLocation, Source wsdlSource, Class serviceClass) {
   347     private WSDLModel parseWSDL(URL wsdlDocumentLocation, Source wsdlSource, Class serviceClass) {
   348         try {
   348         try {
   349             return RuntimeWSDLParser.parse(wsdlDocumentLocation, wsdlSource, createCatalogResolver(),
   349             return RuntimeWSDLParser.parse(wsdlDocumentLocation, wsdlSource, createCatalogResolver(),
   350                 true, getContainer(), serviceClass, ServiceFinder.find(WSDLParserExtension.class).toArray());
   350                 true, getContainer(), serviceClass, ServiceFinder.find(WSDLParserExtension.class).toArray());