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

Examples of org.jboss.narayana.blacktie.jatmibroker.jab.factory.Transaction.commit()


      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"));
      t.commit();
      jcf.closeConnection("connection");
    } catch (JABException e) {
      log.error("JAB error: " + e.getMessage(), e);
    }
  }
View Full Code Here


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

    byte[] expected = new byte[60];
    System.arraycopy("tpcall_x_octet".getBytes(), 0, expected, 0, 14);
    byte[] received = call.getByteArray("X_OCTET");
    assertTrue(Arrays.equals(expected, received));
View Full Code Here

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

    byte[] expected = new byte[60];
    System.arraycopy("tpcall_x_c_type".getBytes(), 0, expected, 0, 15);
    byte[] received = call.getByteArray("X_OCTET");
    assertTrue(Arrays.equals(expected, received));
View Full Code Here

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

    byte[] expected = new byte[60];
    System.arraycopy("tpcall_x_octet".getBytes(), 0, expected, 0, 14);
    byte[] received = call.getByteArray("X_OCTET");
    assertTrue(Arrays.equals(expected, received));
View Full Code Here

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

    byte[] expected = new byte[60];
    System.arraycopy("tpcall_x_c_type".getBytes(), 0, expected, 0, 15);
    byte[] received = call.getByteArray("X_OCTET");
    assertTrue(Arrays.equals(expected, received));
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.