Author |
Message |
Topic: Question on variable substitution |
mgk
Replies: 4 Views: 1708
|
Forum: WebSphere Message Broker (ACE) Support Posted: Fri Aug 29, 2025 3:00 am Subject: Question on variable substitution |
The reason IF {Qualifier}.Base.XYZ ='1' THEN
does not work is that the { ... } syntax is only valid as part of a field reference path element. And a field reference must start with a corre ... |
Topic: Error when importing Administration .yaml file for REST API |
mgk
Replies: 4 Views: 4171
|
Forum: WebSphere Message Broker (ACE) Support Posted: Sun Aug 17, 2025 5:50 am Subject: Error when importing Administration .yaml file for REST API |
I've checked and the next fix pak for v13 should have have all these problems in it. If you need fixes for v12 please open a support ticket...
I would be interested to know what it is you are tryin ... |
Topic: Error when importing Administration .yaml file for REST API |
mgk
Replies: 4 Views: 4171
|
Forum: WebSphere Message Broker (ACE) Support Posted: Wed Aug 13, 2025 9:09 am Subject: Error when importing Administration .yaml file for REST API |
OK, that's a defect
If you search and replace {dot-net-app-domain} with {dotnetappdomain} it should import OK. If you need a proper fix, raise a PMR to ask for one.
I hope that helps. |
Topic: Bar files /MessageFlow Deletion from ACE Integration Server |
mgk
Replies: 8 Views: 42587
|
Forum: WebSphere Message Broker (ACE) Support Posted: Mon Jun 02, 2025 5:44 am Subject: Bar files /MessageFlow Deletion from ACE Integration Server |
Hi Eric.
It's not clear to me what you are trying to achieve here? Maybe if you could elaborate on why you are trying to do this I might be able to understand what the problem is that you are seein ... |
Topic: Bar files /MessageFlow Deletion from ACE Integration Server |
mgk
Replies: 8 Views: 42587
|
Forum: WebSphere Message Broker (ACE) Support Posted: Fri May 30, 2025 5:03 am Subject: Bar files /MessageFlow Deletion from ACE Integration Server |
I just ran a quick test to remove an application from an Integration Server on ACE 13.0.3 - is this what you are looking for?
mqsideploy -i localhost -p 7600 -d ExampleCollector
BIP1062I: Remo ... |
Topic: Standalone Integration Server Status Check Command in ACE12 |
mgk
Replies: 2 Views: 34133
|
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: 30868
|
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: 30833
|
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: 27729
|
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: 14717
|
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: 14717
|
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: 10531
|
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: 9297
|
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: 9773
|
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: 21794
|
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 ... |