Author |
Message
|
BERNETTE |
Posted: Fri May 02, 2003 3:54 am Post subject: Problem when creating an MRM message from an XML message |
|
|
Newbie
Joined: 21 Feb 2003 Posts: 6
|
In a compute mode, I checked the pane 'use as message body' for the message set I selected for output message. The system generated ESQL code for the message set and the message type. I use also a destination list. In the following Mqoutput node, I have some problem. I found the following message in the trace, but I cannot find the problem :
ParserException BIP5294E: Resource Manager: Bitstream Worker cannot be found: Message Set '{2}', Message Format '{3}'.
The required bitstream worker for Message Set/Message Format pair ({2}, {3}) has not been installed. This means that either the message format had not been specified properly, the installation is not valid (corrupted or incomplete) or that an unknown bitstream worker has been requested at resource registration time or at run time.
The bitstream workers are loaded when the MtiImbParser.lil is loaded when the Broker starts an Execution Group (DataFlowEngine instance). Check the Application event viewer (or system log) for error messages when the broker is started or when a resource is deployed to the broker. Check that the appropriate bitstream worker file (dll or shared object) exists in the correct directory. E.g. On NT if we send an XML message to the broker we should have the file bipxmlworker.wrk in the <MQSI dir>bin directory. Other platforms should have the .wrk files in the <MQSI dir>/lib directory.
Thanks in advance. |
|
Back to top |
|
 |
RamVijayawada |
Posted: Fri May 02, 2003 5:14 am Post subject: |
|
|
Novice
Joined: 22 Apr 2003 Posts: 15
|
Remove the message sets from the Broker and redeploy them..Probably that works |
|
Back to top |
|
 |
BERNETTE |
Posted: Fri May 02, 2003 5:26 am Post subject: |
|
|
Newbie
Joined: 21 Feb 2003 Posts: 6
|
|
Back to top |
|
 |
jefflowrey |
Posted: Fri May 02, 2003 8:11 am Post subject: |
|
|
Grand Poobah
Joined: 16 Oct 2002 Posts: 19981
|
Did you check your system log or Application Event Log for other error messages?
Did you look to see if there is an appropriate .wrk file in the correct location for your platform? |
|
Back to top |
|
 |
kirani |
Posted: Fri May 02, 2003 11:57 am Post subject: |
|
|
Jedi Knight
Joined: 05 Sep 2001 Posts: 3779 Location: Torrance, CA, USA
|
I think you are missing MessageFormat property. Please make sure you have code similar to following in your compute node:
Code: |
SET OutputRoot.Properties.MessageFormat = 'CWF'; -- or 'XML' or 'TDS', ...
|
_________________ Kiran
IBM Cert. Solution Designer & System Administrator - WBIMB V5
IBM Cert. Solutions Expert - WMQI
IBM Cert. Specialist - WMQI, MQSeries
IBM Cert. Developer - MQSeries
|
|
Back to top |
|
 |
BERNETTE |
Posted: Sun May 04, 2003 10:49 pm Post subject: |
|
|
Newbie
Joined: 21 Feb 2003 Posts: 6
|
I set Default Wire Format to 'CWF' in the message set and it works !
Thanks for the tips. |
|
Back to top |
|
 |
|