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


Java OperationClient.setCallback方法代码示例

本文整理汇总了Java中org.apache.axis2.client.OperationClient.setCallback方法的典型用法代码示例。如果您正苦于以下问题:Java OperationClient.setCallback方法的具体用法?Java OperationClient.setCallback怎么用?Java OperationClient.setCallback使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在org.apache.axis2.client.OperationClient的用法示例。


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

示例1: doInvokeAsync

import org.apache.axis2.client.OperationClient; //导入方法依赖的package包/类
public Future<?> doInvokeAsync(MessageContext request, AsyncHandler callback) {
    // We need the qname of the operation being invoked to know which 
    // AxisOperation the OperationClient should be based on.
    // Note that the OperationDesc is only set through use of the Proxy. Dispatch
    // clients do not use operations, so the operationDesc will be null.  In this
    // case an anonymous AxisService with anoymouns AxisOperations for the supported
    // MEPs will be created; and it is that anonymous operation name which needs to
    // be specified
    QName operationName = getOperationNameToUse(request, ServiceClient.ANON_OUT_IN_OP);

    // TODO: Will the ServiceClient stick around on the InvocationContext
    // or will we need some other mechanism of creating this?
    // Try to create an OperationClient from the passed in ServiceClient
    InvocationContext ic = request.getInvocationContext();
    ServiceClient svcClient = ic.getServiceClient();
    OperationClient opClient = createOperationClient(svcClient, operationName);

    initOperationClient(opClient, request);

    // Setup the client so that it knows whether the underlying call to
    // Axis2 knows whether or not to start a listening port for an
    // asynchronous response.
    Boolean useAsyncMep = (Boolean)request.getProperty(Constants.USE_ASYNC_MEP);
    if ((useAsyncMep != null && useAsyncMep.booleanValue())
            || opClient.getOptions().isUseSeparateListener()) {
        configureAsyncListener(opClient);
    } else {
        if (log.isDebugEnabled()) {
            log.debug(
                    "Asynchronous message exchange not enabled.  The invocation will be synchronous.");
        }
    }


    CallbackFuture cbf = null;
    if (callback != null) {
        cbf = new CallbackFuture(ic, callback);
    } else {
        throw ExceptionFactory.makeWebServiceException(Messages.getMessage("ICErr4"));
    }

    opClient.setCallback(cbf);

    org.apache.axis2.context.MessageContext axisRequestMsgCtx = request.getAxisMessageContext();
    try {
        execute(opClient, false, axisRequestMsgCtx);
    } catch (AxisFault af) {
        if (log.isDebugEnabled()) {
            log.debug(axisRequestMsgCtx.getLogIDString() + " AxisFault received from client: " +
                    af.getMessage());
        }
        /*
         * Save the exception on the callback.  The client will learn about the error when they try to
         * retrieve the async results via the Response.get().  "Errors that occur during the invocation
         * are reported via an exception when the client attempts to retrieve the results of the operation."
         * -- JAXWS 4.3.3
         */

        /*
        * TODO:  This is the appropriate thing to do here since the thrown exception may occur before
        * we switch threads to the async thread.  But... what happens if we've already switched over
        * to the async thread?  So far, it appears that the exception gets set on the FutureTask
        * Concurrent object, and we never hit this scope.  This means that later, when the client
        * calls future.get(), no exception will be thrown despite what the spec says.  The client can,
        * however, retrieve errors via it's AsyncHandler.
        */
        cbf.onError(af);
    }

    return cbf.getFutureTask();
}
 
开发者ID:wso2,项目名称:wso2-axis2,代码行数:72,代码来源:AxisInvocationController.java


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