*/
JABMessage(Connection connection, String bufferType, String bufferSubType)
throws JABException {
try {
this.connection = connection;
Buffer buffer = connection.tpalloc(bufferType, bufferSubType, 0);
if (buffer.getType().equals("X_OCTET")) {
xOctet = (X_OCTET) buffer;
} else if (buffer.getType().equals("X_COMMON")) {
xCommon = (X_COMMON) buffer;
} else {
xCType = (X_C_TYPE) buffer;
}
} catch (ConnectionException e) {