Author |
Message
|
Missam |
Posted: Tue Jan 20, 2004 7:37 pm Post subject: Error 2339 |
|
|
Chevalier
Joined: 16 Oct 2003 Posts: 424
|
Hi,
I'm Getting the Error 2339 when i'm publishing the message from my compute node.
I Have a TDS message which i'm converting as XML in compute 1 and trying to Publish and Propagate in my compute2 .
Any help is Appreciated
Thanx
Sam |
|
Back to top |
|
 |
EddieA |
Posted: Tue Jan 20, 2004 8:18 pm Post subject: |
|
|
 Jedi
Joined: 28 Jun 2001 Posts: 2453 Location: Los Angeles
|
And Error 2339 is ?? It isn't in my Messages book.
Please post the complete error message, and anything else you think is relevant.
Cheers, _________________ Eddie Atherton
IBM Certified Solution Developer - WebSphere Message Broker V6.1
IBM Certified Solution Developer - WebSphere Message Broker V7.0 |
|
Back to top |
|
 |
Missam |
Posted: Wed Jan 21, 2004 6:29 am Post subject: |
|
|
Chevalier
Joined: 16 Oct 2003 Posts: 424
|
Hey
Here is the explanation of error when i use user trace debug
UserTrace BIP7086I: Node 'XYZ .Publication1.PSService1': The Publication Node with Subscription Point 'WMS/PostTrade/1.1/Allocation/GP/ROTHSCHILD' has received an error code 2339.
The Publication Node with Subscription Point '' has received an error with code 2339. No response message has been sent as one was not requested.
No user action required.
There is explanation for the error in WMQI Programming Guide
MQRC_RFH_PARM_MISSING |
|
Back to top |
|
 |
EddieA |
Posted: Wed Jan 21, 2004 8:02 am Post subject: |
|
|
 Jedi
Joined: 28 Jun 2001 Posts: 2453 Location: Los Angeles
|
Ah. I thought you meant a BIP0339. Hits head with hand.
OK, the explanation says MQRC_RFH_PARM_MISSING. Did you look that up, and check what causes it. Are you building a valid RFH2.
Cheers, _________________ Eddie Atherton
IBM Certified Solution Developer - WebSphere Message Broker V6.1
IBM Certified Solution Developer - WebSphere Message Broker V7.0 |
|
Back to top |
|
 |
Missam |
Posted: Wed Jan 21, 2004 8:45 am Post subject: |
|
|
Chevalier
Joined: 16 Oct 2003 Posts: 424
|
Hey
here is my RFH2 Header
SET OutputRoot.Properties = InputRoot.Properties;
SET OutputRoot.Properties.MessageDomain = 'XML';
SET OutputRoot.MQMD = InputRoot.MQMD;
SET OutputRoot.MQMD.Format = MQFMT_RF_HEADER_2;
SET OutputRoot.MQRFH2.(MQRFH2.Field)Version = 2;
SET OutputRoot.MQRFH2.(MQRFH2.Field)Format = MQFMT_STRING;
SET OutputRoot.MQRFH2.psc.Command = 'Publish';
SET OutputRoot.MQRFH2.psc.Topic = 'XYZ';
Now i got a new problem.
When i user trace debug my flow.The error is gone.
but it's not publishing to my queue.even i got subsribed properly
the topic for both publish and subscibe are same ,still it's saying
BIP7081I: The Publication Node has matched 0 subscriptions to topic 'XYZ'
I can't understand whats happening to my message |
|
Back to top |
|
 |
Missam |
Posted: Wed Jan 21, 2004 2:08 pm Post subject: |
|
|
Chevalier
Joined: 16 Oct 2003 Posts: 424
|
Hi,
At Last i got rid of the problem
this is the publishing part i used
SET OutputRoot.Properties = InputRoot.Properties;
--SET OutputRoot.Properties.MessageDomain = 'XML';
SET OutputRoot.MQMD = InputRoot.MQMD;
SET OutputRoot.MQMD.Format = MQFMT_RF_HEADER_2;
SET OutputRoot.MQRFH2.(MQRFH2.Field)Version = 2;
SET OutputRoot.MQRFH2.(MQRFH2.Field)Format = MQFMT_STRING;
SET OutputRoot.MQRFH2.psc.Command = 'Publish';
SET OutputRoot.MQRFH2.psc.Topic = 'XYZ';
SET OutputRoot.XML = InputBody;
--SET OutputRoot.MQRFH2.mcd.Msd = 'xml';
--SET OutputRoot.MQRFH2.mcd.Type = 'xml';
Thanx
Sam |
|
Back to top |
|
 |
ourtown |
Posted: Thu Aug 19, 2004 7:25 am Post subject: |
|
|
 Acolyte
Joined: 05 Feb 2002 Posts: 67 Location: Somerset, NJ
|
Just an FYI
The 4 digit codes are in cmqc.h _________________ Brian S. Crabtree
WBI Consultant |
|
Back to top |
|
 |
|