Archive for the Category: Raspberry Pi

C Code to Lookup MQ Reason Code

Starting with the release of IBM MQ v8.0, IBM included a new header file called: cmqstrc.h. The file description says: This file provides mappings between MQI constant values and string versions of their definitions. In the cmqstrc.h file, from IBM MQ v9.2, there are 342 subroutines for looking up the various integer values and returning […]

Also posted in C, Capitalware, HPE NonStop, IBM i (OS/400), IBM MQ, Linux, macOS (Mac OS X), Open Source, Programming, Unix, Windows, z/OS Comments Off on C Code to Lookup MQ Reason Code

Replay of Online Meetup: Enterprise messaging on the Raspberry Pi with IBM MQ

If you wanted to attend the online meetup of Enterprise messaging on the Raspberry Pi with IBM MQ but could not attend, you can now watch the replay of it at: https://www.crowdcast.io/e/learn-about-ibm-mq-an/register Regards, Roger Lacroix Capitalware Inc.

Also posted in Education, IBM MQ Comments Off on Replay of Online Meetup: Enterprise messaging on the Raspberry Pi with IBM MQ

Online Meetup: Enterprise messaging on the Raspberry Pi with IBM MQ

Richard Coppen and Max Kahan of IBM Hursley, UK are hosting an Online Meetup called Enterprise messaging on the Raspberry Pi with IBM MQ. It will be hosted on CrowdCast on November 2, 2020. To learn more about it and to sign up, go to: https://www.crowdcast.io/e/learn-about-ibm-mq-an/register Regards, Roger Lacroix Capitalware Inc.

Also posted in Education, IBM MQ Comments Off on Online Meetup: Enterprise messaging on the Raspberry Pi with IBM MQ

IBM MQ on Raspberry Pi

Max Kahan has posted a blog posting detailing how to get up and running with IBM MQ on Raspberry Pi. IBM MQ on Raspberry Pi – our tastiest developer edition yet! Regards, Roger Lacroix Capitalware Inc.

Also posted in IBM MQ Comments Off on IBM MQ on Raspberry Pi

Java Method to Output a Byte Array in HEX Dump Format

On StackOverflow, I posted code to output a byte array in a HEX dump format. I thought I should post the code here as a complete working sample. You can download the source code from here. You can copy the 2 methods (dumpBuffer & formatHex) to your general purpose toolkit and use them in any […]

Also posted in HPE NonStop, IBM i (OS/400), Java, JMS, Linux, macOS (Mac OS X), Open Source, Programming, Unix, Windows 2 Comments

Raspberry Pi edition of IBM MQ Advanced for Developers

IBM has just released Raspberry Pi edition of IBM MQ Advanced for Developers. I gotta figure out how to get some play time with this release of MQ. 🙂 Regards, Roger Lacroix Capitalware Inc.

Also posted in IBM MQ Comments Off on Raspberry Pi edition of IBM MQ Advanced for Developers

Simple Monitoring of the Current Queue Depth

On StackOverflow, someone asked a question about determining when a queue’s current depth is the same as maximum depth. They were trying to do it from a script. While this is probably possible (I’m not a sed and/or awk guy), it seemed to me that they are trying to squeeze a fully blown up balloon […]

Also posted in HPE NonStop, IBM i (OS/400), IBM MQ, IBM MQ Appliance, Java, Linux, macOS (Mac OS X), Open Source, PCF, Programming, Unix, Windows, z/OS Comments Off on Simple Monitoring of the Current Queue Depth

IBM MQ, Java and MQ MI and/or MQ HA

Sometimes you come across things that make you just scratch your head and say who the hell wrote this @#$% code. I’m not trying to say that I’m the world’s greatest programmer but some of the shit that the MQ/Java team writes just makes my head spin. They need to share what they’re smoking! IBM’s […]

Also posted in HPE NonStop, IBM i (OS/400), IBM MQ, IBM MQ Appliance, Java, Linux, macOS (Mac OS X), Programming, Unix, Windows, z/OS Comments Off on IBM MQ, Java and MQ MI and/or MQ HA

Java’s Missing Byte Array Class

After 25 years, it is still surprising that Java doesn’t have a proper byte array class. There can be many reasons that the data a Java program needs to work with is in a byte array. It could be the contents of a file or MQTT message or IBM MQ message, etc. Since there is […]

Also posted in HPE NonStop, IBM i (OS/400), Java, JMS, Linux, macOS (Mac OS X), Open Source, Programming, Unix, Windows, z/OS 3 Comments

Inhibit/Allow the Get & Put Actions of a Queue

On StackOverflow, someone asked a question about inhibiting get actions against a queue. Here is a simple Java/MQ program that will set inhibit or allow for the GET and PUT attributes of a queue. You can download the source code from here. Regards, Roger Lacroix Capitalware Inc.

Also posted in HPE NonStop, IBM i (OS/400), IBM MQ, IBM MQ Appliance, Java, Linux, macOS (Mac OS X), Open Source, Programming, Unix, Windows, z/OS Comments Off on Inhibit/Allow the Get & Put Actions of a Queue