当前位置: 首页>>代码示例>>Java>>正文


Java ContainerException类代码示例

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


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

示例1: subscribe

import org.globus.wsrf.container.ContainerException; //导入依赖的package包/类
/**
* Call this method if you want to subscribe and provide a NotifyCallback to handle the
* messages
*/
public org.oasis.wsn.SubscribeResponse subscribe(QName qname, NotifyCallback callback) throws RemoteException, ContainerException, MalformedURIException {
    synchronized (portTypeMutex) {
        configureStubSecurity((Stub) portType, "subscribe");

        if (consumer == null) {
            // Create client side notification consumer
            consumer = org.globus.wsrf.NotificationConsumerManager.getInstance();
            consumer.startListening();
            consumerEPR = consumer.createNotificationConsumer(callback);
        }

        org.oasis.wsn.Subscribe params = new org.oasis.wsn.Subscribe();
        params.setUseNotify(Boolean.TRUE);
        params.setConsumerReference(consumerEPR);
        org.oasis.wsn.TopicExpressionType topicExpression = new org.oasis.wsn.TopicExpressionType();
        topicExpression.setDialect(org.globus.wsrf.WSNConstants.SIMPLE_TOPIC_DIALECT);
        topicExpression.setValue(qname);
        params.setTopicExpression(topicExpression);
        return portType.subscribe(params);
   }
}
 
开发者ID:NCIP,项目名称:cagrid-general,代码行数:26,代码来源:StockPortfolioManagerClientBase.java

示例2: subscribeRP

import org.globus.wsrf.container.ContainerException; //导入依赖的package包/类
/**
 * This method allows a client to subscribe to the WORKFLOWSTATUSELEMENT resource property of an 
 * executing workflow 
 * 
 * @param epr					Epr pointing the the WorkflowService resource ( on context service) that will handle a workflow execution.
 * @param TimeInSeconds			Time interval after which the subscription expires. 
 * @return
 * @throws MalformedURIException, RemoteException, ContainerException, InterruptedException
 */
public static void subscribeRP(EndpointReferenceType epr, int TimeInSeconds) throws MalformedURIException, 
RemoteException, ContainerException, InterruptedException
{
	CountDownLatch doneSignal = new CountDownLatch(1);
	TavernaWorkflowServiceImplClient serviceClient = new TavernaWorkflowServiceImplClient(epr, doneSignal, null);
	serviceClient.subscribe(TavernaWorkflowServiceImplConstantsBase.WORKFLOWSTATUSELEMENT);
	doneSignal.await(TimeInSeconds, TimeUnit.SECONDS);
}
 
开发者ID:NCIP,项目名称:cagrid-core,代码行数:18,代码来源:TavernaWorkflowServiceClient.java


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