• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    公众号

Java EngineConfiguration类代码示例

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

本文整理汇总了Java中org.apache.axis.EngineConfiguration的典型用法代码示例。如果您正苦于以下问题:Java EngineConfiguration类的具体用法?Java EngineConfiguration怎么用?Java EngineConfiguration使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。



EngineConfiguration类属于org.apache.axis包,在下文中一共展示了EngineConfiguration类的20个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的Java代码示例。

示例1: getAllArtifacts

import org.apache.axis.EngineConfiguration; //导入依赖的package包/类
public List<ClientArtifact> getAllArtifacts(String artifactType,
        String nameSpace) throws Exception {
    if (nameSpace == null)
        nameSpace = mClient.getDefaultNamespace();
    EngineConfiguration config = mClient.getEngineConfiguration();
    DispatcherService service = new DispatcherServiceLocator(config);
    URL portAddress = mClient.constructServiceURL("/ws/Dispatcher");
    Dispatcher theService = service.getDispatcher(portAddress);
    String runQuery = "<getArtifactList xmlns='urn:ws.tracker.collabnet.com'><adhocQuery><artifactTypes><artifactType><tagName>"
            + artifactType
            + "</tagName><namespace>"
            + nameSpace
            + "</namespace></artifactType></artifactTypes></adhocQuery></getArtifactList>";
    Request queryRequest = toRequest(createDocument(runQuery));
    Response queryResponse = theService.execute(queryRequest);
    Document queryResponseDocument = toDocument(queryResponse);
    ClientArtifactListXMLHelper result = new ClientArtifactListXMLHelper(
            queryResponseDocument);
    return result.getAllArtifacts();
}
 
开发者ID:jonico,项目名称:core,代码行数:21,代码来源:TrackerWebServicesClient.java


示例2: getArtifactChanges

import org.apache.axis.EngineConfiguration; //导入依赖的package包/类
/**
 * Get all artifact changes between from and to times
 * 
 * @param ata
 * @param from
 * @param to
 * @return
 * @throws Exception
 */
public HistoryTransactionList getArtifactChanges(ArtifactType[] ata,
        long from, Long to) throws Exception {
    EngineConfiguration config = mClient.getEngineConfiguration();
    ArtifactHistoryService service = new ArtifactHistoryServiceLocator(
            config);
    URL portAddress = mClient
            .constructServiceURL("/tracker/ArtifactHistory");
    ArtifactHistoryManager theService = service
            .getArtifactHistoryManager(portAddress);

    /*
     * Long to = new Long(System.currentTimeMillis()); long from =
     * to.longValue(); try { from = Long.parseLong(lastSynchDateTime); }
     * catch(NumberFormatException nfe) { }
     */

    TrackerUtil.debug("request artifactChanges() from: " + new Date(from));
    return theService.getArtifactChanges(ata, from, to);
}
 
开发者ID:jonico,项目名称:core,代码行数:29,代码来源:TrackerWebServicesClient.java


示例3: getArtifactsById

import org.apache.axis.EngineConfiguration; //导入依赖的package包/类
/**
 * Get all of the artifacts given a list of ids
 * 
 * @param idList
 * @return
 * @throws Exception
 */
public ClientArtifactListXMLHelper getArtifactsById(Set<String> idList)
        throws Exception {

    EngineConfiguration config = mClient.getEngineConfiguration();
    DispatcherService service = new DispatcherServiceLocator(config);
    URL portAddress = mClient.constructServiceURL("/ws/Dispatcher");
    Dispatcher theService = service.getDispatcher(portAddress);

    String runQuery = "<getArtifactById xmlns='urn:ws.tracker.collabnet.com'> ";
    for (String id : idList) {
        runQuery += "<id>" + id + "</id>";
    }
    runQuery += "</getArtifactById>";

    TrackerUtil.debug("getArtifactsById(): ");
    Response r = theService.execute(toRequest(createDocument(runQuery)));
    Document result = toDocument(r);
    ClientArtifactListXMLHelper helper = new ClientArtifactListXMLHelper(
            result);
    return helper;
}
 
开发者ID:jonico,项目名称:core,代码行数:29,代码来源:TrackerWebServicesClient.java


示例4: getArtifactTypes

import org.apache.axis.EngineConfiguration; //导入依赖的package包/类
/**
 * Queries the server and returns a list of artifact types.
 * 
 * @return
 * @throws ServiceException
 * @throws WSException
 * @throws RemoteException
 */
public Collection<TrackerArtifactType> getArtifactTypes()
        throws ServiceException, WSException, RemoteException {
    EngineConfiguration config = mClient.getEngineConfiguration();
    MetadataService service = new MetadataServiceLocator(config);
    URL portAddress = mClient.constructServiceURL("/tracker/Metadata");
    Metadata theService = service.getMetadataService(portAddress);
    ArtifactType[] artifactTypes = theService.getArtifactTypes();
    String key;
    for (ArtifactType type : artifactTypes) {
        key = TrackerUtil.getKey(type.getNamespace(), type.getTagName());
        if (repositoryData == null)
            repositoryData = new TrackerClientData();
        if (repositoryData.getArtifactTypeFromKey(key) == null)
            repositoryData.addArtifactType(new TrackerArtifactType(type));
    }

    return repositoryData.getArtifactTypes();
}
 
开发者ID:jonico,项目名称:core,代码行数:27,代码来源:TrackerWebServicesClient.java


示例5: getMetaDataForArtifact

import org.apache.axis.EngineConfiguration; //导入依赖的package包/类
/**
 * Get the metadata for the given artifact. The metadata contains the valid
 * values for attributes and the valid operations that can be performed on
 * the attribute
 * 
 * @param namespace
 * @param artifactType
 * @param artifactId
 * @return
 * @throws ServiceException
 * @throws WSException
 * @throws RemoteException
 */
public ArtifactTypeMetadata getMetaDataForArtifact(String namespace,
        String artifactType, String artifactId) throws ServiceException,
        WSException, RemoteException {
    EngineConfiguration config = mClient.getEngineConfiguration();
    MetadataService service = new MetadataServiceLocator(config);
    URL portAddress = mClient.constructServiceURL("/tracker/Metadata");
    Metadata theService = service.getMetadataService(portAddress);
    TrackerUtil.debug("getMetaDataForArtifact():" + artifactId);
    ArtifactTypeMetadata metaData = theService.getMetadataForArtifact(
            new ArtifactType(artifactType, namespace, ""), artifactId);
    TrackerUtil.debug("getMetaDataForArtifact():done ");
    TrackerArtifactType type = repositoryData
            .getArtifactTypeFromKey(TrackerUtil.getKey(namespace,
                    artifactType));
    if (type == null) {
        type = new TrackerArtifactType(metaData.getArtifactType()
                .getDisplayName(), metaData.getArtifactType().getTagName(),
                metaData.getArtifactType().getNamespace());
    }
    type.populateAttributes(metaData);
    repositoryData.addArtifactType(type);

    return metaData;
}
 
开发者ID:jonico,项目名称:core,代码行数:38,代码来源:TrackerWebServicesClient.java


示例6: getNextPage

import org.apache.axis.EngineConfiguration; //导入依赖的package包/类
/**
 * Get the next page of results. This is used by the
 * ClientArtifactListXMLHelper to ensure that all results are returned
 * 
 * @param pageInfo
 * @return
 * @throws Exception
 */
public Document getNextPage(Node pageInfo, String altQueryRef)
        throws Exception {
    validateNextPage(pageInfo, altQueryRef);
    EngineConfiguration config = mClient.getEngineConfiguration();
    DispatcherService service = new DispatcherServiceLocator(config);
    URL portAddress = mClient.constructServiceURL("/ws/Dispatcher");
    Dispatcher theService = service.getDispatcher(portAddress);

    Document doc = createNewXMLDocument(DEFAULT_NAMESPACE, "ns1:"
            + "getNextPage");
    Element root = doc.getDocumentElement();
    Node newPageInfo = doc.importNode(pageInfo, true);
    root.appendChild(newPageInfo);

    TrackerUtil.debug("getNextPage()");
    Response r = theService.execute(toRequest(doc));
    Document result = toDocument(r);

    return result;
}
 
开发者ID:jonico,项目名称:core,代码行数:29,代码来源:TrackerWebServicesClient.java


示例7: postAttachment

import org.apache.axis.EngineConfiguration; //导入依赖的package包/类
/**
 * Attach a file to a PT artifact
 * 
 * @param taskId
 * @param comment
 * @param attachment
 * @throws ServiceException
 * @throws WSException
 * @throws RemoteException
 */
public long postAttachment(String taskId, String comment,
        DataSource attachment) throws ServiceException, WSException,
        RemoteException {
    EngineConfiguration config = mClient.getEngineConfiguration();
    AttachmentService service = new AttachmentServiceLocator(config);
    URL portAddress = mClient.constructServiceURL("/tracker/Attachment");
    AttachmentManager theService = service
            .getAttachmentService(portAddress);
    DataHandler attachmentHandler = new DataHandler(attachment);

    theService.addAttachment(taskId, attachment.getName(), comment,
            attachment.getContentType(), attachmentHandler);
    long[] ids = theService.getAttachmentIds(taskId);
    Arrays.sort(ids);
    return ids[ids.length - 1];
}
 
开发者ID:jonico,项目名称:core,代码行数:27,代码来源:TrackerWebServicesClient.java


示例8: createPortType

import org.apache.axis.EngineConfiguration; //导入依赖的package包/类
protected CaNanoLabServicePortType createPortType() throws RemoteException {

		CaNanoLabServiceAddressingLocator locator = new CaNanoLabServiceAddressingLocator();
		// attempt to load our context sensitive wsdd file
		InputStream resourceAsStream = getClass().getResourceAsStream("client-config.wsdd");
		if (resourceAsStream != null) {
			// we found it, so tell axis to configure an engine to use it
			EngineConfiguration engineConfig = new FileProvider(resourceAsStream);
			// set the engine of the locator
			locator.setEngine(new AxisClient(engineConfig));
		}
		CaNanoLabServicePortType port = null;
		try {
			port = locator.getCaNanoLabServicePortTypePort(getEndpointReference());
		} catch (Exception e) {
			throw new RemoteException("Unable to locate portType:" + e.getMessage(), e);
		}

		return port;
	}
 
开发者ID:NCIP,项目名称:cananolab,代码行数:21,代码来源:CaNanoLabServiceClientBase.java


示例9: createPortType

import org.apache.axis.EngineConfiguration; //导入依赖的package包/类
private PreprocessDatasetSTATMLServicePortType createPortType() throws RemoteException {

		PreprocessDatasetSTATMLServiceAddressingLocator locator = new PreprocessDatasetSTATMLServiceAddressingLocator();
		// attempt to load our context sensitive wsdd file
		InputStream resourceAsStream = ClassUtils.getResourceAsStream(getClass(), "client-config.wsdd");
		if (resourceAsStream != null) {
			// we found it, so tell axis to configure an engine to use it
			EngineConfiguration engineConfig = new FileProvider(resourceAsStream);
			// set the engine of the locator
			locator.setEngine(new AxisClient(engineConfig));
		}
		PreprocessDatasetSTATMLServicePortType port = null;
		try {
			port = locator.getPreprocessDatasetSTATMLServicePortTypePort(getEndpointReference());
		} catch (Exception e) {
			throw new RemoteException("Unable to locate portType:" + e.getMessage(), e);
		}

		return port;
	}
 
开发者ID:NCIP,项目名称:cagrid-general,代码行数:21,代码来源:PreprocessDatasetSTATMLServiceClient.java


示例10: createPortType

import org.apache.axis.EngineConfiguration; //导入依赖的package包/类
private MageTranslationServicesPortType createPortType() throws RemoteException {

		MageTranslationServicesServiceAddressingLocator locator = new MageTranslationServicesServiceAddressingLocator();
		// attempt to load our context sensitive wsdd file
		InputStream resourceAsStream = ClassUtils.getResourceAsStream(getClass(), "client-config.wsdd");
		if (resourceAsStream != null) {
			// we found it, so tell axis to configure an engine to use it
			EngineConfiguration engineConfig = new FileProvider(resourceAsStream);
			// set the engine of the locator
			locator.setEngine(new AxisClient(engineConfig));
		}
		MageTranslationServicesPortType port = null;
		try {
			port = locator.getMageTranslationServicesPortTypePort(getEndpointReference());
		} catch (Exception e) {
			throw new RemoteException("Unable to locate portType:" + e.getMessage(), e);
		}

		return port;
	}
 
开发者ID:NCIP,项目名称:cagrid-general,代码行数:21,代码来源:MageTranslationServicesClient.java


示例11: createPortType

import org.apache.axis.EngineConfiguration; //导入依赖的package包/类
protected PhotoSharingRegistrationPortType createPortType() throws RemoteException {

		PhotoSharingRegistrationServiceAddressingLocator locator = new PhotoSharingRegistrationServiceAddressingLocator();
		// attempt to load our context sensitive wsdd file
		InputStream resourceAsStream = getClass().getResourceAsStream("client-config.wsdd");
		if (resourceAsStream != null) {
			// we found it, so tell axis to configure an engine to use it
			EngineConfiguration engineConfig = new FileProvider(resourceAsStream);
			// set the engine of the locator
			locator.setEngine(new AxisClient(engineConfig));
		}
		PhotoSharingRegistrationPortType port = null;
		try {
			port = locator.getPhotoSharingRegistrationPortTypePort(getEndpointReference());
		} catch (Exception e) {
			throw new RemoteException("Unable to locate portType:" + e.getMessage(), e);
		}

		return port;
	}
 
开发者ID:NCIP,项目名称:cagrid-general,代码行数:21,代码来源:PhotoSharingRegistrationClientBase.java


示例12: createPortType

import org.apache.axis.EngineConfiguration; //导入依赖的package包/类
protected GalleryPortType createPortType() throws RemoteException {

		GalleryServiceAddressingLocator locator = new GalleryServiceAddressingLocator();
		// attempt to load our context sensitive wsdd file
		InputStream resourceAsStream = getClass().getResourceAsStream("client-config.wsdd");
		if (resourceAsStream != null) {
			// we found it, so tell axis to configure an engine to use it
			EngineConfiguration engineConfig = new FileProvider(resourceAsStream);
			// set the engine of the locator
			locator.setEngine(new AxisClient(engineConfig));
		}
		GalleryPortType port = null;
		try {
			port = locator.getGalleryPortTypePort(getEndpointReference());
		} catch (Exception e) {
			throw new RemoteException("Unable to locate portType:" + e.getMessage(), e);
		}

		return port;
	}
 
开发者ID:NCIP,项目名称:cagrid-general,代码行数:21,代码来源:GalleryClientBase.java


示例13: createPortType

import org.apache.axis.EngineConfiguration; //导入依赖的package包/类
protected PhotoSharingPortType createPortType() throws RemoteException {

		PhotoSharingServiceAddressingLocator locator = new PhotoSharingServiceAddressingLocator();
		// attempt to load our context sensitive wsdd file
		InputStream resourceAsStream = getClass().getResourceAsStream("client-config.wsdd");
		if (resourceAsStream != null) {
			// we found it, so tell axis to configure an engine to use it
			EngineConfiguration engineConfig = new FileProvider(resourceAsStream);
			// set the engine of the locator
			locator.setEngine(new AxisClient(engineConfig));
		}
		PhotoSharingPortType port = null;
		try {
			port = locator.getPhotoSharingPortTypePort(getEndpointReference());
		} catch (Exception e) {
			throw new RemoteException("Unable to locate portType:" + e.getMessage(), e);
		}

		return port;
	}
 
开发者ID:NCIP,项目名称:cagrid-general,代码行数:21,代码来源:PhotoSharingClientBase.java


示例14: createPortType

import org.apache.axis.EngineConfiguration; //导入依赖的package包/类
protected CaGridEnumerationPortType createPortType() throws RemoteException {

		CaGridEnumerationServiceAddressingLocator locator = new CaGridEnumerationServiceAddressingLocator();
		// attempt to load our context sensitive wsdd file
		InputStream resourceAsStream = getClass().getResourceAsStream("client-config.wsdd");
		if (resourceAsStream != null) {
			// we found it, so tell axis to configure an engine to use it
			EngineConfiguration engineConfig = new FileProvider(resourceAsStream);
			// set the engine of the locator
			locator.setEngine(new AxisClient(engineConfig));
		}
		CaGridEnumerationPortType port = null;
		try {
			port = locator.getCaGridEnumerationPortTypePort(getEndpointReference());
		} catch (Exception e) {
			throw new RemoteException("Unable to locate portType:" + e.getMessage(), e);
		}

		return port;
	}
 
开发者ID:NCIP,项目名称:cagrid-general,代码行数:21,代码来源:CaGridEnumerationClientBase.java


示例15: createPortType

import org.apache.axis.EngineConfiguration; //导入依赖的package包/类
protected StockPortfolioManagerPortType createPortType() throws RemoteException {

		StockPortfolioManagerServiceAddressingLocator locator = new StockPortfolioManagerServiceAddressingLocator();
		// attempt to load our context sensitive wsdd file
		InputStream resourceAsStream = getClass().getResourceAsStream("client-config.wsdd");
		if (resourceAsStream != null) {
			// we found it, so tell axis to configure an engine to use it
			EngineConfiguration engineConfig = new FileProvider(resourceAsStream);
			// set the engine of the locator
			locator.setEngine(new AxisClient(engineConfig));
		}
		StockPortfolioManagerPortType port = null;
		try {
			port = locator.getStockPortfolioManagerPortTypePort(getEndpointReference());
		} catch (Exception e) {
			throw new RemoteException("Unable to locate portType:" + e.getMessage(), e);
		}

		return port;
	}
 
开发者ID:NCIP,项目名称:cagrid-general,代码行数:21,代码来源:StockPortfolioManagerClientBase.java


示例16: createPortType

import org.apache.axis.EngineConfiguration; //导入依赖的package包/类
protected StockManagerPortType createPortType() throws RemoteException {

		StockManagerServiceAddressingLocator locator = new StockManagerServiceAddressingLocator();
		// attempt to load our context sensitive wsdd file
		InputStream resourceAsStream = getClass().getResourceAsStream("client-config.wsdd");
		if (resourceAsStream != null) {
			// we found it, so tell axis to configure an engine to use it
			EngineConfiguration engineConfig = new FileProvider(resourceAsStream);
			// set the engine of the locator
			locator.setEngine(new AxisClient(engineConfig));
		}
		StockManagerPortType port = null;
		try {
			port = locator.getStockManagerPortTypePort(getEndpointReference());
		} catch (Exception e) {
			throw new RemoteException("Unable to locate portType:" + e.getMessage(), e);
		}

		return port;
	}
 
开发者ID:NCIP,项目名称:cagrid-general,代码行数:21,代码来源:StockManagerClientBase.java


示例17: createPortType

import org.apache.axis.EngineConfiguration; //导入依赖的package包/类
protected IdentifiersNAServicePortType createPortType() throws RemoteException {

		IdentifiersNAServiceAddressingLocator locator = new IdentifiersNAServiceAddressingLocator();
		// attempt to load our context sensitive wsdd file
		InputStream resourceAsStream = getClass().getResourceAsStream("client-config.wsdd");
		if (resourceAsStream != null) {
			// we found it, so tell axis to configure an engine to use it
			EngineConfiguration engineConfig = new FileProvider(resourceAsStream);
			// set the engine of the locator
			locator.setEngine(new AxisClient(engineConfig));
		}
		IdentifiersNAServicePortType port = null;
		try {
			port = locator.getIdentifiersNAServicePortTypePort(getEndpointReference());
		} catch (Exception e) {
			throw new RemoteException("Unable to locate portType:" + e.getMessage(), e);
		}

		return port;
	}
 
开发者ID:NCIP,项目名称:gsid,代码行数:21,代码来源:IdentifiersNAServiceClientBase.java


示例18: createPortType

import org.apache.axis.EngineConfiguration; //导入依赖的package包/类
protected CBMPortType createPortType() throws RemoteException {

		CBMServiceAddressingLocator locator = new CBMServiceAddressingLocator();
		// attempt to load our context sensitive wsdd file
		InputStream resourceAsStream = getClass().getResourceAsStream("client-config.wsdd");
		if (resourceAsStream != null) {
			// we found it, so tell axis to configure an engine to use it
			EngineConfiguration engineConfig = new FileProvider(resourceAsStream);
			// set the engine of the locator
			locator.setEngine(new AxisClient(engineConfig));
		}
		CBMPortType port = null;
		try {
			port = locator.getCBMPortTypePort(getEndpointReference());
		} catch (Exception e) {
			throw new RemoteException("Unable to locate portType:" + e.getMessage(), e);
		}

		return port;
	}
 
开发者ID:NCIP,项目名称:common-biorepository-model,代码行数:21,代码来源:CBMClientBase.java


示例19: createPortType

import org.apache.axis.EngineConfiguration; //导入依赖的package包/类
protected GlobalModelExchangePortType createPortType() throws RemoteException {

		GlobalModelExchangeServiceAddressingLocator locator = new GlobalModelExchangeServiceAddressingLocator();
		// attempt to load our context sensitive wsdd file
		InputStream resourceAsStream = getClass().getResourceAsStream("client-config.wsdd");
		if (resourceAsStream != null) {
			// we found it, so tell axis to configure an engine to use it
			EngineConfiguration engineConfig = new FileProvider(resourceAsStream);
			// set the engine of the locator
			locator.setEngine(new AxisClient(engineConfig));
		}
		GlobalModelExchangePortType port = null;
		try {
			port = locator.getGlobalModelExchangePortTypePort(getEndpointReference());
		} catch (Exception e) {
			throw new RemoteException("Unable to locate portType:" + e.getMessage(), e);
		}

		return port;
	}
 
开发者ID:NCIP,项目名称:cagrid-core,代码行数:21,代码来源:GlobalModelExchangeClientBase.java


示例20: createPortType

import org.apache.axis.EngineConfiguration; //导入依赖的package包/类
protected TavernaWorkflowServicePortType createPortType() throws RemoteException {

		TavernaWorkflowServiceAddressingLocator locator = new TavernaWorkflowServiceAddressingLocator();
		// attempt to load our context sensitive wsdd file
		InputStream resourceAsStream = getClass().getResourceAsStream("client-config.wsdd");
		if (resourceAsStream != null) {
			// we found it, so tell axis to configure an engine to use it
			EngineConfiguration engineConfig = new FileProvider(resourceAsStream);
			// set the engine of the locator
			locator.setEngine(new AxisClient(engineConfig));
		}
		TavernaWorkflowServicePortType port = null;
		try {
			port = locator.getTavernaWorkflowServicePortTypePort(getEndpointReference());
		} catch (Exception e) {
			throw new RemoteException("Unable to locate portType:" + e.getMessage(), e);
		}

		return port;
	}
 
开发者ID:NCIP,项目名称:cagrid-core,代码行数:21,代码来源:TavernaWorkflowServiceClientBase.java



注:本文中的org.apache.axis.EngineConfiguration类示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
Java ConsoleCommandSender类代码示例发布时间:2022-05-21
下一篇:
Java NameExpr类代码示例发布时间:2022-05-21
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap