Author |
Message |
Topic: Diacritics break in configurable properties on ACE restart |
mgk
Replies: 1 Views: 629
|
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: 3243
|
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: 3243
|
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: 3051
|
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: 2413
|
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: 2681
|
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: 14242
|
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: 17664
|
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: 8492
|
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: 6646
|
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: 6646
|
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: 21310
|
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 ... |
Topic: Optimize Integration server startup |
mgk
Replies: 1 Views: 4736
|
Forum: WebSphere Message Broker (ACE) Support Posted: Thu Aug 03, 2023 3:00 am Subject: Optimize Integration server startup |
From the docs: "Optimization applies to independent integration servers only and is not suitable for integration servers that are managed by an integration node." https://www.ibm.com/docs/en ... |
Topic: Shared Variable in Shared Library |
mgk
Replies: 15 Views: 21310
|
Forum: WebSphere Message Broker (ACE) Support Posted: Tue Jul 25, 2023 12:56 pm Subject: Shared Variable in Shared Library |
I want to be able to create a cache that can be shared by all flows in an EG
To do this the cache must exist in one flow and one flow only and this must be the "Callable Flow" I mentioned ... |
Topic: Shared Variable in Shared Library |
mgk
Replies: 15 Views: 21310
|
Forum: WebSphere Message Broker (ACE) Support Posted: Sat Jul 22, 2023 3:39 am Subject: Shared Variable in Shared Library |
Store the SHARED ROW value in the Callable Flow in a structure like OutputRoot.XMLNSC.root.xyz
The calling flow now sees the value in InputRoot.XMLNSC.root.xyz.
This is the correct way to do this. ... |