Author |
Message |
Topic: WMB V6.0 deploying subflows independently |
brokendrum
Replies: 0 Views: 1654
|
Forum: WebSphere Message Broker (ACE) Support Posted: Wed Jan 04, 2006 3:58 am Subject: WMB V6.0 deploying subflows independently |
We are trying to migrate from WMQI 2.1 to WMB V6.0. Our current 2.1 code uses subflows as a way of managing changes which can be deployed without impacting other subflows:
MessageFlow1
.....L Rule ... |
Topic: SWIFT XML conversion |
brokendrum
Replies: 3 Views: 5076
|
Forum: WebSphere Message Broker (ACE) Support Posted: Mon Jul 26, 2004 1:22 am Subject: SWIFT XML conversion |
Looks like the message is being parsed correctly right up until the first CRLF is encountered. I experienced this issue when trying to parse a Swift within an XML message, since all the CRLFs are repl ... |
Topic: "IF FOR ANY........" help |
brokendrum
Replies: 3 Views: 2131
|
Forum: WebSphere Message Broker (ACE) Support Posted: Tue Nov 25, 2003 2:59 am Subject: "IF FOR ANY........" help |
Apologies. The code I suggested doesn't work - it's just what I tried because I thought it made sense. The problem is that now I've discovered there is an instance of 'Subtag' which does contains tag ... |
Topic: "IF FOR ANY........" help |
brokendrum
Replies: 3 Views: 2131
|
Forum: WebSphere Message Broker (ACE) Support Posted: Mon Nov 24, 2003 1:27 am Subject: "IF FOR ANY........" help |
Consider the following XML
<Message>
<Subtag>
<ValueA>123.00</ValueA>
</Subtag>
<Subtag>
<ValueB>456.00</ValueB>
... |
Topic: mqsicopymsgset |
brokendrum
Replies: 2 Views: 1845
|
Forum: WebSphere Message Broker (ACE) Support Posted: Fri Oct 10, 2003 6:50 am Subject: mqsicopymsgset |
Thanks. It is part of the base product, but I was looking in the Suppportpacs instead.
Regards,
BD |
Topic: mqsicopymsgset |
brokendrum
Replies: 2 Views: 1845
|
Forum: WebSphere Message Broker (ACE) Support Posted: Fri Oct 10, 2003 6:01 am Subject: mqsicopymsgset |
Which Supportpac contains mqsicopymsgset? |
Topic: Validation of message using CREATE |
brokendrum
Replies: 1 Views: 1675
|
Forum: WebSphere Message Broker (ACE) Support Posted: Wed Oct 08, 2003 1:21 am Subject: Validation of message using CREATE |
Can anybody tell what's wrong with the following code?
DECLARE C INTEGER;
SET C = CARDINALITY(InputRoot.*[]);
DECLARE I INTEGER;
SET I = 1;
WHILE I < C DO
SET OutputRoot.*& ... |
Topic: Core dumps when using Environment tree |
brokendrum
Replies: 2 Views: 2023
|
Forum: WebSphere Message Broker (ACE) Support Posted: Wed Jul 30, 2003 11:50 pm Subject: Core dumps when using Environment tree |
Kirani,
Here are the the variables I'm creating within the Environment tree:
CREATE LASTCHILD OF Environment AS TMHEADER DOMAIN 'MRM' PARSE (TMHEADER, InputRoot.Properties.Encoding, InputRoo ... |
Topic: Core dumps when using Environment tree |
brokendrum
Replies: 2 Views: 2023
|
Forum: WebSphere Message Broker (ACE) Support Posted: Wed Jul 30, 2003 12:10 am Subject: Core dumps when using Environment tree |
I have been using the Environment tree to store variables in various formats (HEX, XML, Strings) and this causes the dataflow engine to crash and create large core dumps. About 30 seconds later the da ... |
Topic: BLOB to XML |
brokendrum
Replies: 2 Views: 2595
|
Forum: WebSphere Message Broker (ACE) Support Posted: Mon Jul 14, 2003 7:16 am Subject: BLOB to XML |
The following code produces a valid xml message:
SET OutputRoot.XML = CAST(SUBSTRING(InputRoot."BLOB"."BLOB" FROM 142) AS CHAR CCSID InputRoot.Properties.CodedCharSe ... |
Topic: Destination list missing. |
brokendrum
Replies: 3 Views: 2350
|
Forum: WebSphere Message Broker (ACE) Support Posted: Mon Jul 14, 2003 6:14 am Subject: Destination list missing. |
Of course! I was forgetting that by copying the whole message the LocalEnvironment will be included!
Thanks,
BD |
Topic: Destination list missing. |
brokendrum
Replies: 3 Views: 2350
|
Forum: WebSphere Message Broker (ACE) Support Posted: Mon Jul 14, 2003 12:21 am Subject: Destination list missing. |
My destination list is missing after my message passes through the following Compute note ESQL With the compute node set to 'LocalEnvironment And Message'. It appears on a trace immediately before the ... |
Topic: RCD on one XML tag |
brokendrum
Replies: 5 Views: 2750
|
Forum: WebSphere Message Broker (ACE) Support Posted: Thu Jun 12, 2003 11:59 pm Subject: RCD on one XML tag |
Kiran,
Thanks for your reply - but I've discovered another problem. When I come to parse the Swift message within the XML message, the Carriage Return Line Feeds have been interpreted as Line Feeds ... |
Topic: RCD on one XML tag |
brokendrum
Replies: 5 Views: 2750
|
Forum: WebSphere Message Broker (ACE) Support Posted: Thu Jun 12, 2003 5:39 am Subject: RCD on one XML tag |
It's a good idea but the Swift is left in the tree at the same branch location. I need to move the 'Swift' field to become the body of the message.
Thanks anyway.
BD |
Topic: RCD on one XML tag |
brokendrum
Replies: 5 Views: 2750
|
Forum: WebSphere Message Broker (ACE) Support Posted: Thu Jun 12, 2003 3:13 am Subject: RCD on one XML tag |
I have an XML message of which one field contains a swift message. The other fields are headers which I have moved into 'Environment' as follows:
SET Environment.Header1 = InputRoot.XML.MESSAGE.Hea ... |