Author |
Message |
Topic: SAP OData service call to send BASE64 data |
timber
Replies: 4 Views: 5091
|
Forum: WebSphere Message Broker (ACE) Support Posted: Thu Jan 09, 2025 3:39 pm Subject: SAP OData service call to send BASE64 data |
The input field is base64. So you need to
- decode the base64 to get a BLOB (base64decode) and then
- encode the BLOB as a character stream ( CAST blob AS CHARACTER CCSID <choose ccsid carefull ... |
Topic: SAP OData service call to send BASE64 data |
timber
Replies: 4 Views: 5091
|
Forum: WebSphere Message Broker (ACE) Support Posted: Wed Jan 01, 2025 10:08 am Subject: SAP OData service call to send BASE64 data |
Please provide details of the input message tree and the code that you have tried. |
Topic: MQOutput node, ESQL, remote QM |
timber
Replies: 2 Views: 4610
|
Forum: WebSphere Message Broker (ACE) Support Posted: Fri Sep 06, 2024 2:01 am Subject: MQOutput node, ESQL, remote QM |
You should find it all in this topic: https://www.ibm.com/docs/en/app-connect/12.0?topic=node-overriding-mqoutput-properties-during-message-processing |
Topic: Using a discriminator with a separation character |
timber
Replies: 7 Views: 5697
|
Forum: WebSphere Message Broker (ACE) Support Posted: Fri Sep 06, 2024 1:58 am Subject: Using a discriminator with a separation character |
Would it work if he used it as discriminator instead of initiator?Yes, that's option a) from my reply on 24th August. But using an initiator is usually simpler, and it usually does not make the mappin ... |
Topic: Query on implementing datalevel security |
timber
Replies: 1 Views: 4439
|
Forum: WebSphere Message Broker (ACE) Support Posted: Thu Sep 05, 2024 2:39 am Subject: Query on implementing datalevel security |
You need to provide more information about your requirements.
How will the user access the data? Via a SOAP API? A REST API? By querying a database?
What options are you considering? Have you alrea ... |
Topic: Using a discriminator with a separation character |
timber
Replies: 7 Views: 5697
|
Forum: WebSphere Message Broker (ACE) Support Posted: Wed Sep 04, 2024 6:42 am Subject: Using a discriminator with a separation character |
You're nearly there. You cannot parse the same data '002|' as an initiator and then again as the content of element 'Record_id'. You need to delete the Record_id elements from your DFDL model.
I kn ... |
Topic: Using a discriminator with a separation character |
timber
Replies: 7 Views: 5697
|
Forum: WebSphere Message Broker (ACE) Support Posted: Mon Sep 02, 2024 7:59 am Subject: Using a discriminator with a separation character |
I forgot to mention that I also need the initiator fields ('002|' and '003|') to be parsed (ie they form part of the input data stream) so that I can map them in the next stage.
Is there a setting ... |
Topic: Multiple DFDL discriminators |
timber
Replies: 2 Views: 4467
|
Forum: WebSphere Message Broker (ACE) Support Posted: Sat Aug 24, 2024 6:52 am Subject: Multiple DFDL discriminators |
See my response to the previous question.
Using dfdl:discriminator is not wrong, but dfdl:initiator is much simpler when each record starts with a distinct string of characters. |
Topic: Using a discriminator with a separation character |
timber
Replies: 7 Views: 5697
|
Forum: WebSphere Message Broker (ACE) Support Posted: Sat Aug 24, 2024 6:48 am Subject: Using a discriminator with a separation character |
I think I can make a suggestion. Good question btw - all the required info is right there.
First, the error message. The element 'Record_id' has a fixed value. This is an XML schema attribute, and ... |
Topic: Get the Topic Name of an MQ message being read from a queue |
timber
Replies: 5 Views: 5619
|
Forum: WebSphere Message Broker (ACE) Support Posted: Thu Jul 25, 2024 5:56 am Subject: Get the Topic Name of an MQ message being read from a queue |
I'm not sure that the `MQRFH2` folder of the publish message is available (If it is, I haven't been able to figure out how to access it).The RFH2 header certainly is available from your message flow. ... |
Topic: EXtra 'LF' added to new lines in DFDL output |
timber
Replies: 2 Views: 7294
|
Forum: WebSphere Message Broker (ACE) Support Posted: Mon May 20, 2024 12:19 pm Subject: EXtra 'LF' added to new lines in DFDL output |
See https://daffodil.apache.org/docs/dfdl/
If you search your DFDL schema for 'outputNewline' you will see that its value is being picked up from a DFDL variable. That variable defaults to %LF; as ... |
Topic: versions in bar file |
timber
Replies: 2 Views: 5160
|
Forum: WebSphere Message Broker (ACE) Support Posted: Mon May 20, 2024 12:09 pm Subject: versions in bar file |
I assume that you are trying to link the BAR file to the version of code that it was built from. The best way to do that is to link the entire BAR file to a git commit id. You can do that in a couple ... |
Topic: Mapping XML in lt-gt format to CCB |
timber
Replies: 1 Views: 2800
|
Forum: WebSphere Message Broker (ACE) Support Posted: Mon Jan 01, 2024 8:32 am Subject: Mapping XML in lt-gt format to CCB |
I see that you are using the MRM parser, which is not recommended since WMB v8. The DFDL parser is much easier to debug, especially when you are doing non-trivial mappings like this. There is a COBOL ... |
Topic: Remove double quotes in DFDL while writing csv output |
timber
Replies: 1 Views: 4912
|
Forum: WebSphere Message Broker (ACE) Support Posted: Wed Nov 22, 2023 4:38 am Subject: Remove double quotes in DFDL while writing csv output |
Are you sure that you are quoting the current output accurately?
Does it actually look like this?"ID","GROUP_ID","STATUS","APPLICATION_IGO"
"1",&qu ... |
Topic: Convert XML to JSON |
timber
Replies: 3 Views: 5998
|
Forum: WebSphere Message Broker (ACE) Support Posted: Wed Nov 22, 2023 4:32 am Subject: Convert XML to JSON |
Can you help me?Definitely. Please supply your current code and explain exactly what is going wrong, and it should be fairly simple. |