Author |
Message |
Topic: BIP5044E: DFDL related deployment error |
raghuiib
Replies: 3 Views: 5872
|
Forum: WebSphere Message Broker (ACE) Support Posted: Thu Jun 11, 2020 5:21 am Subject: BIP5044E: DFDL related deployment error |
@fjb_saper, Thank you. |
Topic: BIP5044E: DFDL related deployment error |
raghuiib
Replies: 3 Views: 5872
|
Forum: WebSphere Message Broker (ACE) Support Posted: Wed Jun 10, 2020 10:23 am Subject: BIP5044E: DFDL related deployment error |
I found the cause. Application_3 referenced Library_X whose CommaSeparatedFormat.xsd was a bit different. Deployment was successful after I removed this Library_X from Application_3 project references ... |
Topic: BIP5044E: DFDL related deployment error |
raghuiib
Replies: 3 Views: 5872
|
Forum: WebSphere Message Broker (ACE) Support Posted: Wed Jun 10, 2020 9:04 am Subject: BIP5044E: DFDL related deployment error |
Hello,
IIB Toolkit version: 10.0.0.13
IIB runtime on Linux: 100018
I have created two static DFDL libraries:
Library_1 --> has IBM defined CommaSeparatedFormat.xsd + few csv type message m ... |
Topic: HTTP Input Node: Destination list based routing |
raghuiib
Replies: 0 Views: 2992
|
Forum: WebSphere Message Broker (ACE) Support Posted: Wed Jan 09, 2019 2:28 pm Subject: HTTP Input Node: Destination list based routing |
Hello,
IIB 10.0.0.5.
I have a simple message flow:
HTTP Input Node --> Route to label
MyFirstLabel --> Compute --> MQ Output
MySecondLabel --> Compute --> MQ Output
MyT ... |
Topic: Java compute node: Extracting data from Json Array |
raghuiib
Replies: 4 Views: 7432
|
Forum: WebSphere Message Broker (ACE) Support Posted: Mon Oct 29, 2018 12:40 pm Subject: Java compute node: Extracting data from Json Array |
Hello Martin B,
I realized it and tested it with the relative path. Still got the null pointer error.
ps.setString(1,(refPayload.getFirstElementByPath("rulesApplied/Item[1] ... |
Topic: Java compute node: Extracting data from Json Array |
raghuiib
Replies: 4 Views: 7432
|
Forum: WebSphere Message Broker (ACE) Support Posted: Sun Oct 28, 2018 5:58 am Subject: Java compute node: Extracting data from Json Array |
I am able to access other data elements, both in header and payload, that are not part of the array. It is just the array elements that is the issue.
I am new to Java and on a learning curve. Will ... |
Topic: Java compute node: Extracting data from Json Array |
raghuiib
Replies: 4 Views: 7432
|
Forum: WebSphere Message Broker (ACE) Support Posted: Sat Oct 27, 2018 10:09 am Subject: Java compute node: Extracting data from Json Array |
Hello,
IIB Version: 10.0.0.13
I have few years of ESQL experience and very new to Java coding. I am running into an issue with extracting data from Json array. Very likely I am missing something i ... |
Topic: Deleting contents in a SHARED ROW |
raghuiib
Replies: 5 Views: 7053
|
Forum: WebSphere Message Broker (ACE) Support Posted: Fri Oct 05, 2018 5:28 am Subject: Deleting contents in a SHARED ROW |
Esa,
Thank you. You were correct. After adding the domain name when accessing the tree the issue went away. My input is a Json message and the code copies values from the input to the SHARED ... |
Topic: Deleting contents in a SHARED ROW |
raghuiib
Replies: 5 Views: 7053
|
Forum: WebSphere Message Broker (ACE) Support Posted: Tue Oct 02, 2018 6:22 am Subject: Deleting contents in a SHARED ROW |
Esa,
I added another level to the cache tree.
my_Cache.CacheData.Record
When it reaches
DELETE FIELD my_Cache.CacheData.Record;
it still throws this error:
Could not create parser
I co ... |
Topic: Deleting contents in a SHARED ROW |
raghuiib
Replies: 5 Views: 7053
|
Forum: WebSphere Message Broker (ACE) Support Posted: Mon Oct 01, 2018 2:04 pm Subject: Deleting contents in a SHARED ROW |
Update...
This worked:
DECLARE myRef REFERENCE TO my_Cache.Record;
DETACH myRef;
Per IBM docs, The DETACH statement detaches a portion of a message tree without deleting it
Since my DET ... |
Topic: Deleting contents in a SHARED ROW |
raghuiib
Replies: 5 Views: 7053
|
Forum: WebSphere Message Broker (ACE) Support Posted: Mon Oct 01, 2018 12:14 pm Subject: Deleting contents in a SHARED ROW |
Hello,
IIB 10.0.0.13
Msg Flow: Kafka Consumer node --> Compute
Flow is single threaded
Requirement:
Accumulate parts of the input data across a defined number of input messages, process th ... |