HOW TO: Enqueue a JMS_TEXT_MESSAGE from java to Oracle database Queue

In this example, I've quickly highlighted the JMS (Java Message Service) components with a simple POJO (Plain Old Java Object) for an asynchronous oracle database queue as well as constructing a JMS_TEXT_MESSAGE to the queue.
February 1, 2017
AQJMSQueueSQL

If you haven't already, jump to the blog HOW TO: Create a Oracle AQ Topic JMS message for java delivery, which will be able to assist you in setting up the database, if you haven't already.

Java Message Service (JMS) is the messaging standard to provide the exchanging of messages. Essentially, JMS are a set interfaces that provides a JMS client the ability to facilitate for the enterprise messaging. This also includes the extension to support the operations and features for Advanced Queuing (AQ)

The JMS Text message is sent to an AQ queue. There are other types of JMS messages ('bytes_messages', 'map_message', 'stream_message' etc) though this blog focuses on the text message, which is called SYS.AQ$_JMS_TEXT_MESSAGE.

The code below goes through a similar example though here's a basic JMS TEXT MESSAGE.

SYS.AQ$_JMS_TEXT_MESSAGE(
SYS.AQ$_JMS_HEADER(NULL,NULL,NULL,NULL,NULL,NULL,NULL),
17,
'text',
NULL
)


Breaking down the SYS.AQ$_JMS_TEXT_MESSAGE

Essentially, the SYS.AQ$_JMS_TEXT_MESSAGE as 4 components, which are highlighted below. the type of JMS_TEXT_MESSAGE components are as follows:

  • HEADER - Header properties in the SYS.AQ$_JMS_HEADER datatype. (Explained in more detail below)
  • TEXT_LEN - It's the size of the message, which it is set automatically. The example above is 29
  • TEXT_VC - The message payload in VARCHAR2 format, if the payload is equal to or less than 4000 bytes. Because the example above is TEXT_LEN is less than 4000 (hence 29), this is populated and not the TEXT_LOB. If it's greater than 4000, this remains null and the TEXT_LOB is populated.
  • TEXT_LOB - The message payload in CLOB (hence the 'LOB' name) format. This is populated if the TEXT_VS is greater than 4000, otherwise it's null


The SYS.AQ$_JMS_HEADER

The HEADER value, which is known as the SYS.AQ$_JMS_HEADER datatype, contains the following attributes.

  • REPLYTO - A Destination supplied by a client when a message is sent
  • TYPE - The type of the message
  • USERID - The identity of the user sending the message
  • APPID - The identity of the application sending the message
  • GROUPID - The identity of the message group of which this message is a part; set by the client
  • GROUPSEQ - The sequence number of the message within the group
  • PROPERTIES - Additional message properties in the SYS.AQ$_JMS_USERPROPARRAY datatype
So you have the header information, the size of the message, then either a VC or a LOB (basically a varchar or a BLOB). To populate the TEXT_LOB, you need to ensure the message exceeds 4000 characters. The example below shows an example on how an xml file is populated within the buffer reader and eventually as a message

Example Below:

package com.aptec.iam.idl.client.produceMessage;

import java.io.BufferedReader;
import java.io.File;
import java.io.FileReader;
import java.io.IOException;
import java.sql.SQLException;
import java.util.Properties;

import javax.jms.JMSException;
import javax.jms.MessageProducer;
import javax.jms.Queue;
import javax.jms.QueueConnection;
import javax.jms.QueueConnectionFactory;
import javax.jms.Session;
import javax.jms.TextMessage;
import javax.jms.TopicConnection;
import javax.naming.InitialContext;

import oracle.jms.AQjmsFactory;
import oracle.jms.AQjmsSession;

public class OracleAQClient {

	static final String xmlFile = "/Users/danielredfern/Documents/workspace/AQProducerAndConsumer/src/com/aptec/iam/idl/client/xmlExamples/identification.xml";
	
	
public static QueueConnection getConnection() {

	
	Properties p = new Properties();
	p.setProperty("java.naming.factory.initial", "weblogic.jndi.WLInitialContextFactory");
	p.setProperty("java.naming.provider.url", "t3://172.16.101.253:7001");
	p.setProperty("java.naming.security.principal", "weblogic");
	p.setProperty("java.naming.security.credentials", "Password1");
	
	InitialContext ctx = null;
	
	try{
		
		ctx = new InitialContext(p);
	}catch(Exception e){
		e.printStackTrace();
	}
	
    String hostname = "172.16.101.253";
    String oracle_sid = "orcl";
    int portno = 1521;
    String userName = "ORACLEAQJMSUSER";
    String password = "ORACLEAQJMSUSER";
    String driver = "thin";
    QueueConnectionFactory QFac = null;
    QueueConnection QCon = null;
    try {
        // get connection factory , not going through JNDI here
        QFac = AQjmsFactory.getQueueConnectionFactory(hostname, oracle_sid, portno, driver);
        // create connection
        QCon = QFac.createQueueConnection(userName, password);
    } catch (Exception e) {
        e.printStackTrace();
    }
    return QCo

The identification.xml file contains characters that exceeds 4000 characters, so the VC becomes a BLOB. This is demonstrated when I query queue table, by using the following command:

select msgid, enq_time, enq_uid, q.user_data from queuetable1 q where q_name = 'AQ_MESSAGE_QUEUE_TABLE'

About the author

Daniel is a Technical Manager with over 10 years of consulting expertise in the Identity and Access Management space.
Daniel has built from scratch this blog as well as technicalconfessions.com
Follow Daniel on twitter @nervouswiggles

Comments

Other Posts

AWS-PHP integration - Email not sent. SMTP Error: Could not authenticate.

phpsmtpaws

February 6, 2020
Created by: Daniel Redfern
AS I was migrating my environment into an S3 environment, I wanted to leverage off the SES services that AWS provide, more specifically, to leverage the off the SMTP functionality by sending an email via PHP
Read More...

SOLUTION: no headers files (.h) found in softwareserial - Arduino

Arduino

February 24, 2019
Created by: Daniel Redfern
The WeMos D1 is a ESP8266 WiFi based board is an extension to the current out-of-the-box library that comes with the Arduino installation. Because of this, you need to import in the libraries as well as acknowledging the specific board. This process is highly confusion with a number of different individuals talking about a number of different ways to integrate.
Read More...

NameID element must be present as part of the Subject in the Response message

ShibbolethSAML

August 7, 2018
Created by: Daniel Redfern
NameID element must be present as part of the Subject in the Response message, please enable it in the IDP configuration.
Read More...

HOW TO provision AD group membership from OpenIDM

OpenIDMICFAD-connector

June 15, 2018
Created by: Daniel Redfern
For what I see, there's not too many supportive documentations out there that will demonstrate how provision AD group membership with the ICF connector using OpenIDM. The use of the special ldapGroups attribute is not explained anywhere in the Integrators guides to to the date of this blog. This quick blog identifies the tasks required to provision AD group membership from OpenIDM to AD using the LDAP ICF connector. However this doesn't really explain what ldapGroups actually does and there's no real worked example of how to go from an Assignment to ldapGroups to an assigned group in AD. I wrote up a wiki article for my own reference: AD group memberships automatically to users This is just my view, others may disagree, but I think the implementation experience could be improved with some more documentation and a more detailed example here.
Read More...

ForgeRock OpenIDM - InvalidCredentialException: Remote framework key is invalid

ICFIDMOpenIDMOpenICF

November 8, 2017
Created by: Daniel Redfern
In the past, the similar error occurred though for the Oracle Identity Management solution. invalidcredentialexception remote framework key is invalid Because they all share the ICF connector framework, the error/solution would be the same.
Read More...

org.forgerock.script.exception.ScriptCompilationException: missing ; before statement

IDMsync.confforgerockopenidm

November 8, 2017
Created by: Daniel Redfern
org.forgerock.script.exception.ScriptCompilationException: missing ; before statement
Read More...

ForgeRock IDM - org.forgerock.script.exception.ScriptCompilationException: missing ; before statemen

OpenIDMsync.confForgeRock

September 17, 2017
Created by: Daniel Redfern
ForgeRock IDM - org.forgerock.script.exception.ScriptCompilationException: missing ; before statement
Read More...

Caused by: org.forgerock.json.resource.BadRequestException: Target does not support attribute groups

OpenIDMForgeRockICFConnector

September 17, 2017
Created by: Daniel Redfern
When performing the attempt of a reconciliation from ForgeRock IDM to Active Directory, I would get the following error
Read More...

ForgeRock OpenIDM - InvalidCredentialException: Remote framework key is invalid

OpenIDMForgeRockICFConnectorAD

September 17, 2017
Created by: Daniel Redfern
In the past, the similar error occurred though for the Oracle Identity Management solution. invalidcredentialexception remote framework key is invalid Because they all share the ICF connector framework, the error/solution would be the same.
Read More...

ERROR Caused by com.google.api.client.auth.oauth2.TokenResponseException 400 Bad Request - invalid_g

OpenIDMIDMGoogleGoogle-AppsICFreconciliation

September 12, 2017
Created by: Daniel Redfern
During the reconcilation from OpenIDM to the ICF google apps connector, the following error response would occur. ERROR Caused by com.google.api.client.auth.oauth2.TokenResponseException 400 Bad Request - invalid_grant
Read More...