Author |
Message |
Topic: Msg Flows not in the Resource Navigator after migrating |
KimT
Replies: 2 Views: 2381
|
Forum: WebSphere Message Broker (ACE) Support Posted: Wed Mar 23, 2005 12:06 pm Subject: Msg Flows not in the Resource Navigator after migrating |
Try importing them in from where they are stored. You migrated but did not import from the file system. Hope this helps. |
Topic: Extracting info on processing instruction |
KimT
Replies: 4 Views: 3227
|
Forum: WebSphere Message Broker (ACE) Support Posted: Mon Aug 02, 2004 8:20 am Subject: Extracting info on processing instruction |
I used the second one. Passed in the whole version="1.1.1" and then passed it back out in response. |
Topic: Extracting info on processing instruction |
KimT
Replies: 4 Views: 3227
|
Forum: WebSphere Message Broker (ACE) Support Posted: Mon Aug 02, 2004 5:28 am Subject: Extracting info on processing instruction |
Thanx it worked! |
Topic: Extracting info on processing instruction |
KimT
Replies: 4 Views: 3227
|
Forum: WebSphere Message Broker (ACE) Support Posted: Mon Aug 02, 2004 3:46 am Subject: Extracting info on processing instruction |
I would like to extract some info off my processing instruction:
instruction: <?KIM version="1.1.1"?>
need to extract: version="1.1.1"
I tried:
SET Environment.Variables.Version = ... |
Topic: Processing Instruction in XML using ESQL |
KimT
Replies: 4 Views: 2976
|
Forum: General Discussion Posted: Wed May 12, 2004 4:27 am Subject: Processing Instruction in XML using ESQL |
SET OutputRoot.XML.OT.(XML.ProcessingInstruction)ibd = 'version="1.4"';
where OT is your outer tag name
this is the correct format to use for a PI, sorry forgot to put it in the first reply  |
Topic: processing instruction problem |
KimT
Replies: 2 Views: 1768
|
Forum: General Discussion Posted: Tue May 11, 2004 9:35 am Subject: processing instruction problem |
Eddie, i didnt know i should put under mqsi. i sent a note to duncan to have it removed. try being kinder.
my problem is resolved.
thanx |
Topic: Processing Instruction in XML using ESQL |
KimT
Replies: 4 Views: 2976
|
Forum: General Discussion Posted: Tue May 11, 2004 9:30 am Subject: Processing Instruction in XML using ESQL |
I just found out you cannot have a PI outside your outer tags. You can set Environment.Variables.String1 and Environment.Variables.String2 then RCD to blob, next concatenate, RCD to xml again.
Und ... |
Topic: processing instruction problem |
KimT
Replies: 2 Views: 1753
|
Forum: WebSphere Message Broker (ACE) Support Posted: Tue May 11, 2004 9:25 am Subject: processing instruction problem |
SET OutputRoot.XML.OT.(XML.ProcessingInstruction)Kim = 'version="1.1.1"';
where OT is your outer tag name.
It seems PI's cannot be placed at the top of an xml stream thru mqsi. It mus ... |
Topic: Reformatted message not passing thru flow |
KimT
Replies: 6 Views: 2768
|
Forum: WebSphere Message Broker (ACE) Support Posted: Fri May 07, 2004 9:13 am Subject: fixed the problem |
Just a heads up. I had a subflow calling a subflow call another subflow. The first subflow registered as having one output terminal. The 3rd subflow had an output terminal but no way to continue ba ... |
Topic: Reformatted message not passing thru flow |
KimT
Replies: 6 Views: 2768
|
Forum: WebSphere Message Broker (ACE) Support Posted: Fri May 07, 2004 6:33 am Subject: Reformatted message not passing thru flow |
That's the problem nothing comes thru to the mainflow. No errors are encountered, nothing.
I've traces going out and coming in. Nothing comes in to the next subflow.
If I run the trace before ... |
Topic: Reformatted message not passing thru flow |
KimT
Replies: 6 Views: 2768
|
Forum: WebSphere Message Broker (ACE) Support Posted: Fri May 07, 2004 6:09 am Subject: Reformatted message not passing thru flow |
I have input terminal node => compute node (blob) => reset content descriptor to xml => output terminal node
when I run a trace before the output terminal node I can see my reformatted msg ... |
Topic: Reformatted message not passing thru flow |
KimT
Replies: 6 Views: 2768
|
Forum: WebSphere Message Broker (ACE) Support Posted: Fri May 07, 2004 5:35 am Subject: update |
If I use an mqoutput node instead of an output terminal. And change the next flow to use an mqinput node instead of an input terminal then the message passes thru.
A trace with Root is identical ... |
Topic: processing instruction problem |
KimT
Replies: 2 Views: 1753
|
Forum: WebSphere Message Broker (ACE) Support Posted: Fri May 07, 2004 5:07 am Subject: processing instruction problem |
I used the following:
SET OutputRoot.XML.(XML.ProcessingInstruction) = 'KIM version="1.1.1"';
However the output is coming out as <? KIM version="1.1.1"?>
The space before KIM is inv ... |
Topic: Reformatted message not passing thru flow |
KimT
Replies: 6 Views: 2768
|
Forum: WebSphere Message Broker (ACE) Support Posted: Fri May 07, 2004 5:05 am Subject: Reformatted message not passing thru flow |
I needed to remove some tags from a msg prior to processing the business msg.
I am able to remove the extra tags using
SET "OutputRoot"."BLOB"."BLOB" = SUBSTRING (BHOLD FROM CAST(Environment.V ... |
Topic: reformatted msg not passing thru |
KimT
Replies: 2 Views: 2106
|
Forum: General Discussion Posted: Fri May 07, 2004 5:04 am Subject: reformatted msg not passing thru |
yes i traced it and the body shows the correct input. i will move my post thanx for the heads up.. |