Package org.jboss.blacktie.jatmibroker.jab

Examples of org.jboss.blacktie.jatmibroker.jab.JABServiceInvoker


    JABTransaction tx = null;
    if (transaction != null) {
      tx = transaction.getJABTransaction();
    }

    JABServiceInvoker remoteService = new JABServiceInvoker(serviceName,
        session, bufferType, bufferSubType);
    serialize(toSend, remoteService.getRequest());
    remoteService.call(tx);
    JABResponse responseMessage = new JABResponse(remoteService.getRCode());
    deserialize(responseMessage, remoteService.getResponse());

    return responseMessage;
  }
View Full Code Here

TOP

Related Classes of org.jboss.blacktie.jatmibroker.jab.JABServiceInvoker

Copyright © 2018 www.massapicom. 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.