Examples of DebitRemote


Examples of org.jboss.narayana.blacktie.examples.integration1.ejb.DebitRemote

    short amount = rcv.getShort("amount");

    String resp = "NAMINGERROR";
    try {
      Context ctx = new InitialContext();
      DebitRemote bean = (DebitRemote) ctx.lookup("DebitBean/remote");
      log.debug("resolved DebitBean");
      resp = bean.debit(acct_no, amount);
    } catch (NamingException e) {
      log.error("Got a naming error: " + e.getMessage(), e);
    }
    log.trace("Returning: " + resp);
    X_OCTET buffer = (X_OCTET) svcinfo.getConnection().tpalloc("X_OCTET",
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.