Author |
Message
|
Blackberry |
Posted: Mon Jan 22, 2007 4:53 am Post subject: Problem using Reset Content Descriptor Node in WBI 6.0 |
|
|
Apprentice
Joined: 12 Jul 2006 Posts: 28
|
Hi,
I am facing a problem when i am trying to reset message domain from MRM to BLOB using RCD node. In that node i have checked Reset Message Domain and set message domain to BLOB.
But no BLOB message i am getting.
I have checked with the visual debugger in 6.0. It is also showing the InputRoot.BLOB.BLOB does contain any data after the RCD node.
Thanx
Blackberry |
|
Back to top |
|
 |
jefflowrey |
Posted: Mon Jan 22, 2007 5:02 am Post subject: |
|
|
Grand Poobah
Joined: 16 Oct 2002 Posts: 19981
|
RCD only changes fields in the Properties tree.
It doesn't cause any reparsing of data.
add
Code: |
Set OutputRoot.BLOB.BLOB=ASBITSTREAM(InputBody,....) |
with the appropriate stuff in the ASBITSTREAM call, to the compute node before your RCD. _________________ I am *not* the model of the modern major general. |
|
Back to top |
|
 |
kimbert |
Posted: Mon Jan 22, 2007 5:03 am Post subject: |
|
|
 Jedi Council
Joined: 29 Jul 2003 Posts: 5542 Location: Southampton
|
Are you trying to change an MRM message tree into a BLOB? The RCD node will not do that - but ASBITSTREAM will. |
|
Back to top |
|
 |
Blackberry |
Posted: Mon Jan 22, 2007 5:10 am Post subject: |
|
|
Apprentice
Joined: 12 Jul 2006 Posts: 28
|
Hi jefflowrey,
Actually the message flow i am currently working with has been migrated from WMQI 2.1. It was preveously working fine with WMQI 2.1.
You are correct. I have just checked with the Help for 6.0.
So this is another difference between 2.1 and 6.0.
Thanks Everybody |
|
Back to top |
|
 |
jefflowrey |
Posted: Mon Jan 22, 2007 5:14 am Post subject: |
|
|
Grand Poobah
Joined: 16 Oct 2002 Posts: 19981
|
The RCD node in 2.1 didn't reparse data either, from what I remember.
But I remember doing things like "Set OutputRoot.BLOB.BLOB = InputRoot.XML;" or some dumb thing. _________________ I am *not* the model of the modern major general. |
|
Back to top |
|
 |
|