Author |
Message |
Topic: Standalone Integration Server Status Check Command in ACE12 |
mgk
Replies: 2 Views: 4598
|
Forum: WebSphere Message Broker (ACE) Support Posted: Fri Mar 28, 2025 7:54 am Subject: Standalone Integration Server Status Check Command in ACE12 |
Yes, there are a couple of options.
Firstly you can use: curl
The docs mention it here for v12: curl -s https://<your-host>:7600/apiv2/
You can narrow it down with a JQ query ... |
Topic: Appending new object to existing JSON.Array |
mgk
Replies: 2 Views: 6595
|
Forum: WebSphere Message Broker (ACE) Support Posted: Sat Mar 15, 2025 5:13 am Subject: Appending new object to existing JSON.Array |
It is hard to be sure this is what you need without an actual test input message, but there were several errors where you redeclared variables in an inner scope which will hide the outer definition an ... |
Topic: Adding items to a JSON array |
mgk
Replies: 3 Views: 4712
|
Forum: WebSphere Message Broker (ACE) Support Posted: Wed Feb 19, 2025 2:36 am Subject: Adding items to a JSON array |
To see what tree shape you should be creating I would recommend you create a JSON message that represents the output message you are looking to create. Then put that message into a flow that has a tra ... |
Topic: Diacritics break in configurable properties on ACE restart |
mgk
Replies: 1 Views: 4630
|
Forum: WebSphere Message Broker (ACE) Support Posted: Fri Sep 13, 2024 6:57 am Subject: Diacritics break in configurable properties on ACE restart |
Hi, this sounds like a defect so you should open a ticket. |
Topic: Propagate to label from JavaCompute node |
mgk
Replies: 3 Views: 4678
|
Forum: WebSphere Message Broker (ACE) Support Posted: Thu Feb 15, 2024 5:51 am Subject: Propagate to label from JavaCompute node |
Hi aceninja
I glad this helped solve your problem.
However, I would recommend checking that the MbRoute object is not null before calling propagate() on it.
The label node may exist now in ... |
Topic: Propagate to label from JavaCompute node |
mgk
Replies: 3 Views: 4678
|
Forum: WebSphere Message Broker (ACE) Support Posted: Thu Feb 15, 2024 2:02 am Subject: Propagate to label from JavaCompute node |
Hi aceninja.
Yes this is possible in a Java Compute Node in any version of the product. You have to call the getAllRoutes() or the getRoute() method on the MbNode class to get an MbRoute object whi ... |
Topic: Using FOR Statement with ANY or ALL produces syntax error |
mgk
Replies: 2 Views: 3454
|
Forum: WebSphere Message Broker (ACE) Support Posted: Wed Jan 03, 2024 9:10 am Subject: Using FOR Statement with ANY or ALL produces syntax error |
Hi, so the example is correct but confusing.
In ESQL there is a FOR STATEMENT:
SET OutputRoot.JSON.Data.Result = FOR ANY InputRoot.JSON.Invoice.Purchases."Item"[]
AS I ... |
Topic: Reset API Not Returning any response |
mgk
Replies: 1 Views: 2695
|
Forum: WebSphere Message Broker (ACE) Support Posted: Fri Dec 29, 2023 3:42 am Subject: Reset API Not Returning any response |
I'm not sure if this is your only problem but what you posted shows that the order of message creation is wrong. The message is built and sent in the order it is created, so you need to create the Req ... |
Topic: Referencing JSON Array Object Directly |
mgk
Replies: 2 Views: 3014
|
Forum: WebSphere Message Broker (ACE) Support Posted: Tue Dec 19, 2023 7:02 am Subject: Referencing JSON Array Object Directly |
If you look at the documentation you can see that the array syntax does not take a name: DECLARE ref3 REFERENCE TO InputRoot.JSON.Data.Payload.Sets.[1];
X: WHILE LASTMOVE(ref3) DO ... |
Topic: Unconvertable character Error while Parsing JSON |
mgk
Replies: 4 Views: 14768
|
Forum: WebSphere Message Broker (ACE) Support Posted: Wed Nov 08, 2023 3:47 am Subject: Unconvertable character Error while Parsing JSON |
I thought "1f 8b" was familiar. Now it's occurred to me. Its the standard ID prefix on GZIP encoded data
Well spotted, great find
The HTTPRequestNode has an option in the "Ad ... |
Topic: Encrypting ODBC traffic in IIB |
mgk
Replies: 11 Views: 18213
|
Forum: WebSphere Message Broker (ACE) Support Posted: Thu Oct 19, 2023 4:48 am Subject: Encrypting ODBC traffic in IIB |
Hi
This page from the docs explains how to use SSL to connect to Oracle for IIB v10:
https://www.ibm.com/docs/en/integration-bus/10.0?topic=eocd-connecting-database-from-linux-unix-systems-by-us ... |
Topic: Need help to setup multiple keystore/truststore in ACE V11 |
mgk
Replies: 4 Views: 8964
|
Forum: WebSphere Message Broker (ACE) Support Posted: Mon Oct 09, 2023 7:04 am Subject: Need help to setup multiple keystore/truststore in ACE V11 |
Hi.
So I guess I may have to add the CA cert of the 2nd HTTPS webservice into the current keystore/truststore.
Yes, this is the way to do it. As you are not using mTLS you do not need to specify ... |
Topic: JSON domain adds "Item" to each array |
mgk
Replies: 3 Views: 7171
|
Forum: WebSphere Message Broker (ACE) Support Posted: Tue Sep 12, 2023 2:06 am Subject: JSON domain adds "Item" to each array |
Hi,
In your first example you run:
SET Environment.Variables.fullResponse = InputRoot.JSON.Data;
SET OutputRoot.JSON.Data.fullResponse = Environment.Variables.fullResponse;
And this forces a ... |
Topic: JSON domain adds "Item" to each array |
mgk
Replies: 3 Views: 7171
|
Forum: WebSphere Message Broker (ACE) Support Posted: Mon Sep 11, 2023 4:23 am Subject: JSON domain adds "Item" to each array |
Hi.
I would not expect that the "item" name before each element in an array is serialised as part of the output message and a quick test shows me that it is not. Item is present inside th ... |
Topic: Shared Variable in Shared Library |
mgk
Replies: 15 Views: 22455
|
Forum: WebSphere Message Broker (ACE) Support Posted: Wed Aug 16, 2023 5:30 am Subject: Shared Variable in Shared Library |
"The flow that you use to repopulate the cache after adding a new row to the DB table to be cached must literally be the same flow that is used for the initial populating of the cache - not even ... |