Tag Archives: JMS

How to read the content of a JMS message using PL/SQL

This is just a short post – but all the details are in this post from Rob Van Wijk. Today I wanted to read the contents of a JMS Text Message sitting in a queue. I wrote a Spring Boot … Continue reading

Posted in Uncategorized | Tagged , , , , | Leave a comment

Implementing the Transactional Outbox pattern using Transactional Event Queues and JMS

Hi, in this post I want to provide an example of how to implement the Transactional Outbox pattern using Transactional Event Queues and JMS with the new Oracle Database 23c Free – Developer Release I mentioned in my last post. … Continue reading

Posted in Uncategorized | Tagged , , , , , | Leave a comment

Cross-region event propagation with Oracle Transactional Event Queues

In this post I want to demonstrate how to use Oracle Transactional Event Queues (TEQ) to propagate messages/events across regions. I will use two Oracle Autonomous Databases running in Oracle Cloud, one in Ashburn, VA and one in Phoenix, AZ … Continue reading

Posted in Uncategorized | Tagged , , , | 1 Comment

Improving JMS Performance on WebLogic

WebLogic Server includes a feature called the ‘JMS Wrapper’ that you can take advantage of to dramatically improve the performance of JMS applications running on WebLogic Server.  Note that this is not for remote JMS clients, this is for JMS … Continue reading

Posted in Uncategorized | Tagged , , , | Leave a comment

Simple JMS client in Scala

In a small departure from our normal Java oriented examples, this post shows how to send a JMS message from Scala.  It is basically a port of the simple JMS client found in this post. This example is written to run … Continue reading

Posted in Uncategorized | Tagged , , | Leave a comment

An updated simple WebLogic JMS client in .Net (C#)

In previous posts, we presented a simple WebLogic JMS client in Java here, and an updated one here.  We also presented a simple C# JMS program here. In this post, we present a more or less equivalent C#/.Net implementation of … Continue reading

Posted in Uncategorized | Tagged , , , | 3 Comments

An updated simple WebLogic JMS client

A little while ago, we posted a simple JMS client for WebLogic here.  That post demonstrated how to create a simple JMS client program that could send messages to a WebLogic JMS queue.  It also showed how to set up … Continue reading

Posted in Uncategorized | Tagged , | 6 Comments

Using JMS in .Net Applications

I was asked recently what we could do about allowing .Net applications to participate in pub/sub environments alongside Java applications.  It turns out that WebLogic Server, since 10.3, has a built-in .Net JMS client, which allows us to easily write … Continue reading

Posted in Uncategorized | Tagged , , , | 1 Comment

A simple JMS client for WebLogic 11g

UPDATE: An update to this simple client is posted here. Quite often I find that I want to be able to send some JMS messages programmatically, so I decided to write a simple, reusable Java class to help with this … Continue reading

Posted in Uncategorized | Tagged , , | 11 Comments