Package org.jboss.narayana.blacktie.jatmibroker.jab.factory

Examples of org.jboss.narayana.blacktie.jatmibroker.jab.factory.JABConnection.beginTransaction()


    String message = args[0];
    try {
      JABConnectionFactory jcf = new JABConnectionFactory(
          "JABFactoryClientTest");
      JABConnection c = jcf.getConnection("connection");
      Transaction t = c.beginTransaction(-1);
      JABBuffer b = new JABBuffer();
      b.setValue("X_OCTET", message.getBytes());
      log.info("Calling call with input: " + message);
      JABResponse call = c.call("FOOAPP", b, t, "X_OCTET", null);
      log.info("Called call with output: " + call.getValue("X_OCTET"));
View Full Code Here


    JABConnectionFactory factory = new JABConnectionFactory("test");
    JABConnection connection = factory.getConnection("connection");
    JABBuffer toSend = new JABBuffer();
    toSend.setArrayValue("X_OCTET", "test_tpcall_x_octet".getBytes());

    Transaction transaction = connection.beginTransaction(10000);
    JABResponse call = connection.call(
        RunServer.getServiceNametpcallXOctet(), toSend, transaction,
        "X_OCTET", null);
    transaction.commit();
View Full Code Here

    double[] balances = new double[2];
    balances[0] = 1.1;
    balances[1] = 2.2;
    toSend.setArrayValue("balances", balances);

    Transaction transaction = connection.beginTransaction(10000);
    JABResponse call = connection.call(
        RunServer.getServiceNametpcallXCType(), toSend, transaction,
        "X_C_TYPE", "acct_info");
    transaction.commit();
View Full Code Here

    JABConnectionFactory factory = new JABConnectionFactory("test");
    JABConnection connection = factory.getConnection("connection");
    JABBuffer toSend = new JABBuffer();
    toSend.setArrayValue("X_OCTET", "test_tpcall_x_octet".getBytes());

    Transaction transaction = connection.beginTransaction(10000);
    JABResponse call = connection.call(
        RunServer.getServiceNametpcallXOctet(), toSend, transaction,
        "X_OCTET", null);
    transaction.commit();
View Full Code Here

    double[] balances = new double[2];
    balances[0] = 1.1;
    balances[1] = 2.2;
    toSend.setArrayValue("balances", balances);

    Transaction transaction = connection.beginTransaction(10000);
    JABResponse call = connection.call(
        RunServer.getServiceNametpcallXCType(), toSend, transaction,
        "X_C_TYPE", "acct_info");
    transaction.commit();
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.