Examples of JABBuffer


Examples of org.jboss.narayana.blacktie.jatmibroker.jab.factory.JABBuffer

    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"));
      t.commit();
      jcf.closeConnection("connection");
View Full Code Here

Examples of org.jboss.narayana.blacktie.jatmibroker.jab.factory.JABBuffer

  public void test_tpcall_x_octet() throws Exception {
    log.info("JABFactoryTestCase::test_tpcall_x_octet");
    runServer.tpadvertisetpcallXOctet();
    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);
View Full Code Here

Examples of org.jboss.narayana.blacktie.jatmibroker.jab.factory.JABBuffer

    runServer.tpadvertisetpcallXCType();
    JABConnectionFactory factory = new JABConnectionFactory("test");
    JABConnection connection = factory.getConnection("connection");

    // Assemble the message ByteArrayOutputStream baos = new
    JABBuffer toSend = new JABBuffer();
    toSend.setValue("acct_no", 12345678l);
    toSend.setArrayValue("name", "TOM".getBytes());
    float[] foo = new float[2];
    foo[0] = 1.1F;
    foo[1] = 2.2F;
    toSend.setArrayValue("foo", foo);

    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");
View Full Code Here

Examples of org.jboss.narayana.blacktie.jatmibroker.jab.factory.JABBuffer

  public void test_tpcall_x_octet() throws Exception {
    log.info("JABFactoryTestCase::test_tpcall_x_octet");
    runServer.tpadvertisetpcallXOctet();
    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);
View Full Code Here

Examples of org.jboss.narayana.blacktie.jatmibroker.jab.factory.JABBuffer

    runServer.tpadvertisetpcallXCType();
    JABConnectionFactory factory = new JABConnectionFactory("test");
    JABConnection connection = factory.getConnection("connection");

    // Assemble the message ByteArrayOutputStream baos = new
    JABBuffer toSend = new JABBuffer();
    toSend.setValue("acct_no", 12345678l);
    toSend.setArrayValue("name", "TOM".getBytes());
    float[] foo = new float[2];
    foo[0] = 1.1F;
    foo[1] = 2.2F;
    toSend.setArrayValue("foo", foo);

    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");
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.