Author |
Message |
Topic: How to access message content when no message set is defined |
afielden
Replies: 45 Views: 18686
|
Forum: WebSphere Message Broker (ACE) Support Posted: Tue Oct 05, 2010 5:59 am Subject: How to access message content when no message set is defined |
There are open source JMS solutions available, which would have been sufficient for this project.
And yet someone paid a ton of money for WMB. I repeat my suggestion to push back.
I certainly wo ... |
Topic: How to access message content when no message set is defined |
afielden
Replies: 45 Views: 18686
|
Forum: WebSphere Message Broker (ACE) Support Posted: Tue Oct 05, 2010 5:33 am Subject: How to access message content when no message set is defined |
But if WMB was selected early on in the project, the "some reason" you wondered about in an earlier post is probably because it can do this sort of thing very easily and efficiently. If yo ... |
Topic: How to access message content when no message set is defined |
afielden
Replies: 45 Views: 18686
|
Forum: WebSphere Message Broker (ACE) Support Posted: Tue Oct 05, 2010 5:12 am Subject: How to access message content when no message set is defined |
On the other hand, Vitor said:using a WMB flow to move a file from one place to another is a large sledgehammer on a very small nut.Quite true - that would not be the sort of problem that requires WMB ... |
Topic: How to access message content when no message set is defined |
afielden
Replies: 45 Views: 18686
|
Forum: WebSphere Message Broker (ACE) Support Posted: Tue Oct 05, 2010 5:05 am Subject: How to access message content when no message set is defined |
The data file is produced by a legacy application which is used within the company. The requirement is to read this data file, pick out relevant bits of information, and transform it into XML. This XM ... |
Topic: How to access message content when no message set is defined |
afielden
Replies: 45 Views: 18686
|
Forum: WebSphere Message Broker (ACE) Support Posted: Tue Oct 05, 2010 12:33 am Subject: How to access message content when no message set is defined |
MQInput node. Try it, you'll like it.
Of course, using a WMB flow to move a file from one place to another is a large sledgehammer on a very small nut. There's nothing in the thread to indicate why ... |
Topic: How to access message content when no message set is defined |
afielden
Replies: 45 Views: 18686
|
Forum: WebSphere Message Broker (ACE) Support Posted: Mon Oct 04, 2010 8:07 am Subject: How to access message content when no message set is defined |
Create a sample message flow using MQInput node instead of FileInput and use my original source code example. The source code I provided will not work directly with a FileInput node.
But the code d ... |
Topic: How to access message content when no message set is defined |
afielden
Replies: 45 Views: 18686
|
Forum: WebSphere Message Broker (ACE) Support Posted: Mon Oct 04, 2010 7:56 am Subject: How to access message content when no message set is defined |
MbElement cursor = null;
cursor = message.getRootElement(); // Root element.
cursor = cursor.getFirstChild(); // Properties element.
curs ... |
Topic: How to access message content when no message set is defined |
afielden
Replies: 45 Views: 18686
|
Forum: WebSphere Message Broker (ACE) Support Posted: Mon Oct 04, 2010 6:17 am Subject: How to access message content when no message set is defined |
Well thanks for the fishing lesson, but the interesting thing here is that if on the FileInput node, I set the 'Record detection' to 'Whole file', I was expecting to receive a single message containin ... |
Topic: How to access message content when no message set is defined |
afielden
Replies: 45 Views: 18686
|
Forum: WebSphere Message Broker (ACE) Support Posted: Fri Oct 01, 2010 6:58 am Subject: How to access message content when no message set is defined |
Interesting discussion.
I changed the FileInput parser domain to BLOB, and using the code suggested by lancelotlinc (thanks), I found that the second call to getNextSibling() of the root element retu ... |
Topic: How to access message content when no message set is defined |
afielden
Replies: 45 Views: 18686
|
Forum: WebSphere Message Broker (ACE) Support Posted: Thu Sep 30, 2010 6:12 am Subject: How to access message content when no message set is defined |
I have a very simple message flow consisting of 3 nodes:-
1. FileInput - reads a plain text file
2. JavaCompute - processes the file contents
3. FileOutput - writes the processed contents to an o ... |