From 86c449a6df48ad5a2604132bf2346a5403311aa5 Mon Sep 17 00:00:00 2001 From: gitea_admin Date: Wed, 11 Mar 2026 14:37:31 +0000 Subject: [PATCH] Update wiki Home page for jms-ibm-mq-source --- Home.md | 44 ++++++++++++++++++++++++++++++-------------- 1 file changed, 30 insertions(+), 14 deletions(-) diff --git a/Home.md b/Home.md index 93a012c..cde11cc 100644 --- a/Home.md +++ b/Home.md @@ -1,21 +1,37 @@ -# Deploy the Project on CamelX Platform +# JMS - IBM MQ Source -Deploy on CamelX Platform in three steps +A Kamelet that can read events from an IBM MQ message queue using JMS. -## Step 1: Create a release -From the project space, click on **"Create a release"** +In your Pipe file, you must explicitly declare the IBM MQ Server driver dependency in spec->integration->dependencies -The new version is automatically available in the list +- "mvn:com.ibm.mq:com.ibm.mq.jakarta.client:" -## Step 2: Deploy -Click on **"Deploy"** +## Metadata -- **Version:** Select the desired release -- **Environment:** Choose `Development`, `Staging`, or `Production` -- **Configuration:** Select the configuration source -- **Resources:** Set CPU and Memory +| Property | Value | +|----------|-------| +| Type | source | +| Group | JMS | +| Namespace | Messaging | +| Support Level | Stable | +| Provider | Apache Software Foundation | -## Step 3: Expose -Enable **"Expose"** +## Properties -Choose an **API Gateway** (Internal, Public, etc.) +| Name | Type | Required | Default | Description | +|------|------|----------|---------|-------------| +| `serverName` | string | ✓ | | IBM MQ Server name or address | +| `serverPort` | integer | ✓ | `1414` | IBM MQ Server port | +| `destinationType` | string | | `queue` | The JMS destination type (queue or topic) | +| `destinationName` | string | ✓ | | The destination name | +| `queueManager` | string | ✓ | | Name of the IBM MQ Queue Manager | +| `channel` | string | ✓ | | Name of the IBM MQ Channel | +| `clientId` | string | | | Name of the IBM MQ Client ID | +| `username` | string | ✓ | | Username to authenticate to IBM MQ server | +| `password` | string | ✓ | | Password to authenticate to IBM MQ server | +| `sslCipherSuite` | string | | | CipherSuite to use for enabling TLS | + +## Dependencies + +- `camel:jms` +- `camel:kamelet`