Examples of registerOperationContext()


Examples of org.apache.axis2.context.ConfigurationContext.registerOperationContext()

        .createNewRelatedMessageContext(applicationRMMsg, createSequenceOperation);
   
    OperationContext createSeqOpCtx = createSeqmsgContext.getOperationContext();
    String createSeqMsgId = SandeshaUtil.getUUID();
    createSeqmsgContext.setMessageID(createSeqMsgId);
    context.registerOperationContext(createSeqMsgId, createSeqOpCtx);

    RMMsgContext createSeqRMMsg = new RMMsgContext(createSeqmsgContext);

    String rmNamespaceValue = SpecSpecificConstants.getRMNamespaceValue(rmsBean.getRMVersion());
View Full Code Here

Examples of org.apache.axis2.context.ConfigurationContext.registerOperationContext()

      terminateMessage.setMessageID(SandeshaUtil.getUUID());
    }

    OperationContext operationContext = terminateMessage.getOperationContext();
    // to receive terminate sequence response messages correctly
    configCtx.registerOperationContext(terminateMessage.getMessageID(), operationContext);
   
    String rmNamespaceValue = SpecSpecificConstants.getRMNamespaceValue(rmsBean.getRMVersion());

    RMMsgContext terminateRMMessage = MsgInitializer.initializeMessage(terminateMessage);
View Full Code Here

Examples of org.apache.axis2.context.ConfigurationContext.registerOperationContext()

      initializeCreation(applicationMsgContext, createSeqmsgContext);

      OperationContext createSeqOpCtx = createSeqmsgContext.getOperationContext();
      String createSeqMsgId = SandeshaUtil.getUUID();
      createSeqmsgContext.setMessageID(createSeqMsgId);
      context.registerOperationContext(createSeqMsgId, createSeqOpCtx);

    } catch (AxisFault e) {
      throw new SandeshaException(e.getMessage());
    }
View Full Code Here

Examples of org.apache.axis2.context.ConfigurationContext.registerOperationContext()

    MessageContext terminateMessage = SandeshaUtil.createNewRelatedMessageContext(referenceRMMessage,
        terminateOperation);

    OperationContext operationContext = terminateMessage.getOperationContext();
    configCtx.registerOperationContext(terminateMessage.getMessageID(), operationContext); // to
                                                // receive
                                                // terminate
                                                // sequence
                                                // response
                                                // messages
View Full Code Here

Examples of org.apache.axis2.context.ConfigurationContext.registerOperationContext()

    OperationContext opcontext = OperationContextFactory
        .createOperationContext(
            WSDL20_2004Constants.MEP_CONSTANT_OUT_IN, outInAxisOp);
    opcontext.setParent(msgContext.getServiceContext());
    configurationContext.registerOperationContext(ackRequestRMMsg.getMessageId(),
        opcontext);

    msgContext.setOperationContext(opcontext);
    msgContext.setAxisOperation(outInAxisOp);
   
View Full Code Here

Examples of org.apache.axis2.context.ConfigurationContext.registerOperationContext()

    OperationContext opcontext = OperationContextFactory
        .createOperationContext(
            WSDL20_2004Constants.MEP_CONSTANT_OUT_IN, outInAxisOp);
    opcontext.setParent(msgContext.getServiceContext());
    configurationContext.registerOperationContext(rmMsgCtx.getMessageId(),
        opcontext);

    msgContext.setOperationContext(opcontext);
    msgContext.setAxisOperation(outInAxisOp);
   
View Full Code Here

Examples of org.apache.axis2.context.ConfigurationContext.registerOperationContext()

        .createNewRelatedMessageContext(applicationRMMsg, createSequenceOperation);
   
    OperationContext createSeqOpCtx = createSeqmsgContext.getOperationContext();
    String createSeqMsgId = SandeshaUtil.getUUID();
    createSeqmsgContext.setMessageID(createSeqMsgId);
    context.registerOperationContext(createSeqMsgId, createSeqOpCtx);

    RMMsgContext createSeqRMMsg = new RMMsgContext(createSeqmsgContext);

    String rmNamespaceValue = SpecSpecificConstants.getRMNamespaceValue(rmsBean.getRMVersion());
View Full Code Here

Examples of org.apache.axis2.context.ConfigurationContext.registerOperationContext()

      terminateMessage.setMessageID(SandeshaUtil.getUUID());
    }

    OperationContext operationContext = terminateMessage.getOperationContext();
    // to receive terminate sequence response messages correctly
    configCtx.registerOperationContext(terminateMessage.getMessageID(), operationContext);
   
    String rmNamespaceValue = SpecSpecificConstants.getRMNamespaceValue(rmsBean.getRMVersion());

    RMMsgContext terminateRMMessage = MsgInitializer.initializeMessage(terminateMessage);
View Full Code Here

Examples of org.apache.axis2.context.ConfigurationContext.registerOperationContext()

      //setting flows
      outInAxisOp.setRemainingPhasesInFlow(oldOPeration.getRemainingPhasesInFlow());
     
      OperationContext opcontext = OperationContextFactory.createOperationContext(OperationContextFactory.MEP_CONSTANT_OUT_IN,outInAxisOp);
        opcontext.setParent(msgContext.getServiceContext());
      configurationContext.registerOperationContext(rmMsgCtx.getMessageId(),opcontext);
    } catch (AxisFault e1) {
      throw new SandeshaException ("Could not register an outInAxisOperation");
    }
   
    if (terminated != null
View Full Code Here

Examples of org.apache.axis2.context.ConfigurationContext.registerOperationContext()

      OperationContext createSeqOpCtx = createSeqmsgContext
          .getOperationContext();
      String createSeqMsgId = SandeshaUtil.getUUID();
      createSeqmsgContext.setMessageID(createSeqMsgId);
      context.registerOperationContext(createSeqMsgId, createSeqOpCtx);

    } catch (AxisFault e) {
      throw new SandeshaException(e.getMessage());
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.