當前位置: 首頁>>代碼示例>>Java>>正文


Java WSDLFactory.newInstance方法代碼示例

本文整理匯總了Java中javax.wsdl.factory.WSDLFactory.newInstance方法的典型用法代碼示例。如果您正苦於以下問題:Java WSDLFactory.newInstance方法的具體用法?Java WSDLFactory.newInstance怎麽用?Java WSDLFactory.newInstance使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在javax.wsdl.factory.WSDLFactory的用法示例。


在下文中一共展示了WSDLFactory.newInstance方法的15個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。

示例1: validateVersion

import javax.wsdl.factory.WSDLFactory; //導入方法依賴的package包/類
void validateVersion(String wsdlUrl) {
    WSDLLocator locator = new BasicAuthWSDLLocator(wsdlUrl, null, null);
    WSDLFactory wsdlFactory;
    Definition serviceDefinition;
    try {
        wsdlFactory = WSDLFactory.newInstance();
        WSDLReader wsdlReader = wsdlFactory.newWSDLReader();
        // avoid importing external documents
        wsdlReader.setExtensionRegistry(new WSVersionExtensionRegistry());
        serviceDefinition = wsdlReader.readWSDL(locator);
        Element versionElement = serviceDefinition
                .getDocumentationElement();
        if (!CTMGApiVersion.version.equals(versionElement.getTextContent())) {
            LOGGER.warn("Web service mismatches and the version value, expected: "
                    + CTMGApiVersion.version
                    + " and the one got from wsdl: "
                    + versionElement.getTextContent());
        }
    } catch (WSDLException e) {
        LOGGER.warn("Remote wsdl cannot be retrieved from CT_MG. [Cause: "
                + e.getMessage() + "]", e);
    }

}
 
開發者ID:servicecatalog,項目名稱:development,代碼行數:25,代碼來源:BesDAO.java

示例2: getWSDL11Parser

import javax.wsdl.factory.WSDLFactory; //導入方法依賴的package包/類
public static synchronized WSDL11Parser getWSDL11Parser(String wsdlLocation) throws WSDLException, IOException {
    WSDL11Parser parser = null;
    
    if (parsers == null) {
        parsers = new TreeMap<String, WSDL11Parser>();
    } else {
        parser = parsers.get(wsdlLocation);
    }
    
    if (parser == null) {
        WSDLFactory factory = WSDLFactory.newInstance();
        WSDLReader reader = factory.newWSDLReader();
        reader.setFeature("javax.wsdl.verbose", false);
        Definition definition = reader.readWSDL(wsdlLocation);

        parser = new WSDL11Parser(definition);
        
        parsers.put(wsdlLocation, parser);
    }
    
    return parser;
}
 
開發者ID:apache,項目名稱:incubator-taverna-common-activities,代碼行數:23,代碼來源:WSDL11Parser.java

示例3: readWSDL

import javax.wsdl.factory.WSDLFactory; //導入方法依賴的package包/類
/**
 * Read the WSDL document and create a WSDL Definition.
 *
 * @param wsdlLocation location pointing to a WSDL XML definition.
 * @return the Definition.
 * @throws WSDLException If unable to read the WSDL
 */
public static Definition readWSDL(final String wsdlLocation) throws WSDLException {
    InputStream inputStream = null;
    try {
        URL url = getURL(wsdlLocation);
        inputStream = url.openStream();
        InputSource source = new InputSource(inputStream);
        source.setSystemId(url.toString());
        Document wsdlDoc = XMLHelper.getDocument(source);
        WSDLFactory wsdlFactory = WSDLFactory.newInstance();
        WSDLReader reader = wsdlFactory.newWSDLReader();
        reader.setFeature("javax.wsdl.verbose", false);
        return reader.readWSDL(url.toString(), wsdlDoc);
    } catch (Exception e) {
        throw new WSDLException(WSDLException.OTHER_ERROR,
                SOAPMessages.MESSAGES.unableToReadWSDL(wsdlLocation), e);
    } finally {
        if (inputStream != null) {
            try {
                inputStream.close();
            } catch (IOException ioe) {
                LOGGER.error(ioe);
            }
        }
    }
}
 
開發者ID:jboss-switchyard,項目名稱:switchyard,代碼行數:33,代碼來源:WSDLUtil.java

示例4: toWSDL

import javax.wsdl.factory.WSDLFactory; //導入方法依賴的package包/類
/**
 * Generates WSDL-document from this web service model
 * @param dispatchContext dispatch context where nested service models
 *        can be found
 * @param locationURI SOAP location URI
 * @return WSDL-document object model
 * @throws GenericServiceException if exception encountered when
 *         getting nested service model
 * @throws SAXException if XML-schema could not be parsed
 * @throws WSDLException if XML-schema type could not be found
 */
public Document toWSDL(DispatchContext dispatchContext, String locationURI)  throws GenericServiceException, ParserConfigurationException,
           SAXException, TransformerException, WSDLException {
    if (this.wsdl != null) {
        return this.wsdl;
    }
    WSDLFactory factory = WSDLFactory.newInstance();
    Definition definition = factory.newDefinition();
    definition.setTargetNamespace(namespace);
    definition.addNamespace("tns", namespace);
    definition.addNamespace("xsd", ModelService.XSD);
    definition.addNamespace("soap", SOAP);
    definition.addNamespace("wsse", WSSE);
    
    this.wsdl = modelService.generateWSDL(dispatchContext.getDelegator(), locationURI);
    SchemaImpl schemaImpl = makeSchemaImpl(wsdl, namespace);
    
    Element schema = schemaImpl.getElement();
    wsdlSchema = makeValidationSchema(schema);
    return this.wsdl;
}
 
開發者ID:gildaslemoal,項目名稱:elpi,代碼行數:32,代碼來源:SoapService.java

示例5: createWSDLDefinition

import javax.wsdl.factory.WSDLFactory; //導入方法依賴的package包/類
static Definition createWSDLDefinition(URL wsdlURL) {
    Definition wsdlDefinition = null;
    try {
        WSDLFactory factory = WSDLFactory.newInstance();
        WSDLReader reader = factory.newWSDLReader();
        wsdlDefinition = reader.readWSDL(wsdlURL.toString());
    }
    catch (Exception e) {
        TestLogger.logger
                .debug("*** ERROR ***: Caught exception trying to create WSDL Definition: " +
                        e);
        e.printStackTrace();
    }

    return wsdlDefinition;
}
 
開發者ID:wso2,項目名稱:wso2-axis2,代碼行數:17,代碼來源:DescriptionTestUtils2.java

示例6: createWSDLDefinition

import javax.wsdl.factory.WSDLFactory; //導入方法依賴的package包/類
static public Definition createWSDLDefinition(URL wsdlURL) {
    Definition wsdlDefinition = null;
    try {
        WSDLFactory factory = WSDLFactory.newInstance();
        WSDLReader reader = factory.newWSDLReader();
        wsdlDefinition = reader.readWSDL(wsdlURL.toString());
        wsdlDefinition.setDocumentBaseURI(wsdlURL.toString());
    }
    catch (Exception e) {
        System.out.println(
                "*** ERROR ***: Caught exception trying to create WSDL Definition: " + e);
        e.printStackTrace();
    }

    return wsdlDefinition;
}
 
開發者ID:wso2,項目名稱:wso2-axis2,代碼行數:17,代碼來源:DescriptionTestUtils.java

示例7: readWsdl

import javax.wsdl.factory.WSDLFactory; //導入方法依賴的package包/類
public static Definition readWsdl(URL wsdlURL) {
	Definition definition = null;
	try {
		if (wsdlURL != null) {
			WSDLFactory factory = WSDLFactory.newInstance();
			WSDLReader reader = factory.newWSDLReader();
			//reader.setFeature("javax.wsdl.importDocuments", true);
			definition = reader.readWSDL(null, wsdlURL.toString());
		}
	}
	catch (Throwable t) {
		Engine.logEngine.error("(WSDLUtils) error while reading WSDL", t);
	}
	return definition;
}
 
開發者ID:convertigo,項目名稱:convertigo-engine,代碼行數:16,代碼來源:WSDLUtils.java

示例8: toWSDL

import javax.wsdl.factory.WSDLFactory; //導入方法依賴的package包/類
public Document toWSDL(String locationURI) throws WSDLException {
    WSDLFactory factory = WSDLFactory.newInstance();
    Definition def = factory.newDefinition();
    def.setTargetNamespace(TNS);
    def.addNamespace("xsd", XSD);
    def.addNamespace("tns", TNS);
    def.addNamespace("soap", "http://schemas.xmlsoap.org/wsdl/soap/");
    this.getWSDL(def, locationURI);
    return factory.newWSDLWriter().getDocument(def);
}
 
開發者ID:ilscipio,項目名稱:scipio-erp,代碼行數:11,代碼來源:ModelService.java

示例9: parseWSDLDefinition

import javax.wsdl.factory.WSDLFactory; //導入方法依賴的package包/類
/**
 * Parse the WSDL definition using WSDL4J.
 */
protected Definition parseWSDLDefinition() throws WSDLException {
    WSDLFactory wsdlFactory = WSDLFactory.newInstance();
    WSDLReader reader = wsdlFactory.newWSDLReader();
    reader.setFeature("javax.wsdl.verbose", false);
    reader.setFeature("javax.wsdl.importDocuments", true);
    Definition definition = reader.readWSDL(this.wsdlLocation);
    return definition;
}
 
開發者ID:flowable,項目名稱:flowable-engine,代碼行數:12,代碼來源:WSDLImporter.java

示例10: getWSDLDefinition

import javax.wsdl.factory.WSDLFactory; //導入方法依賴的package包/類
private Definition getWSDLDefinition(final String wsdlLocation) throws Exception
{
   WSDLFactory wsdlFactory = WSDLFactory.newInstance();
   WSDLReader wsdlReader = wsdlFactory.newWSDLReader();

   return wsdlReader.readWSDL(null, wsdlLocation);
}
 
開發者ID:jbossws,項目名稱:jbossws-cxf,代碼行數:8,代碼來源:JBWS2960TestCase.java

示例11: getWSDLDefinition

import javax.wsdl.factory.WSDLFactory; //導入方法依賴的package包/類
private Definition getWSDLDefinition(String wsdlLocation) throws Exception
{
   WSDLFactory wsdlFactory = WSDLFactory.newInstance();
   WSDLReader wsdlReader = wsdlFactory.newWSDLReader();
   wsdlReader.setFeature("javax.wsdl.importDocuments", false);
   wsdlReader.setFeature("javax.wsdl.verbose", false);

   Definition definition = wsdlReader.readWSDL(null, wsdlLocation);
   return definition;
}
 
開發者ID:jbossws,項目名稱:jbossws-cxf,代碼行數:11,代碼來源:JBWS2150TestCase.java

示例12: getWSDLDefinition

import javax.wsdl.factory.WSDLFactory; //導入方法依賴的package包/類
private Definition getWSDLDefinition(String wsdlLocation) throws Exception
{
   WSDLFactory wsdlFactory = WSDLFactory.newInstance();
   WSDLReader wsdlReader = wsdlFactory.newWSDLReader();

   Definition definition = wsdlReader.readWSDL(null, wsdlLocation);
   return definition;
}
 
開發者ID:jbossws,項目名稱:jbossws-cxf,代碼行數:9,代碼來源:JBossWebServicesEarTestCase.java

示例13: parseWSDLDefinition

import javax.wsdl.factory.WSDLFactory; //導入方法依賴的package包/類
/**
 * Parse the WSDL definition using WSDL4J.
 */
private Definition parseWSDLDefinition() throws WSDLException {
  WSDLFactory wsdlFactory = WSDLFactory.newInstance();
  WSDLReader reader = wsdlFactory.newWSDLReader();
  reader.setFeature("javax.wsdl.verbose", false);
  reader.setFeature("javax.wsdl.importDocuments", true);
  Definition definition = reader.readWSDL(this.wsdlLocation);
  return definition;
}
 
開發者ID:logicalhacking,項目名稱:SecureBPMN,代碼行數:12,代碼來源:WSDLImporter.java

示例14: WSDLMetadataProcessor

import javax.wsdl.factory.WSDLFactory; //導入方法依賴的package包/類
public WSDLMetadataProcessor(String wsdl) throws TranslatorException {
	try {
		WSDLFactory wsdlFactory = WSDLFactory.newInstance();
		WSDLReader reader = wsdlFactory.newWSDLReader();
		this.definition = reader.readWSDL(wsdl);
	} catch (WSDLException e) {
		throw new TranslatorException(e);
	}
}
 
開發者ID:kenweezy,項目名稱:teiid,代碼行數:10,代碼來源:WSDLMetadataProcessor.java

示例15: generateWSDL

import javax.wsdl.factory.WSDLFactory; //導入方法依賴的package包/類
public Document generateWSDL(Delegator delegator, String locationURI) throws WSDLException {
    WSDLFactory factory = WSDLFactory.newInstance();
    Definition def = factory.newDefinition();
    def.setTargetNamespace(TNS);
    def.addNamespace("xsd", XSD);
    def.addNamespace("tns", TNS);
    def.addNamespace("soap", "http://schemas.xmlsoap.org/wsdl/soap/");
    this.buildWSDL(delegator, def, locationURI);
    return factory.newWSDLWriter().getDocument(def);
}
 
開發者ID:gildaslemoal,項目名稱:elpi,代碼行數:11,代碼來源:ModelService.java


注:本文中的javax.wsdl.factory.WSDLFactory.newInstance方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。