Author |
Message |
Topic: Encoding a message |
lbrett
Replies: 4 Views: 2817
|
Forum: WebSphere Message Broker (ACE) Support Posted: Fri Nov 08, 2002 5:19 am Subject: Encoding a message |
1. Determine what the base64 algorithm is. You can do this by searching on the web for base64 to determine what it means to encode and decode in base64.
2. Implement the base64 algorithm. My sugg ... |
Topic: Encoding a message |
lbrett
Replies: 4 Views: 2817
|
Forum: WebSphere Message Broker (ACE) Support Posted: Thu Nov 07, 2002 10:48 am Subject: Encoding a message |
You need to write a custom node. I have done this before to handle messages from peoplesoft. The base64 algorithm is not that difficult and i am sure there are existing programs out there for it. |
Topic: Override Message Flow and Set Checkouts |
lbrett
Replies: 1 Views: 1572
|
Forum: WebSphere Message Broker (ACE) Support Posted: Mon Oct 07, 2002 9:58 am Subject: Override Message Flow and Set Checkouts |
The userid is IBMMQSI2. |
Topic: outputMessage parameter in cniSqlSelect |
lbrett
Replies: 1 Views: 2410
|
Forum: WebSphere Message Broker (ACE) Support Posted: Thu Oct 03, 2002 4:40 am Subject: outputMessage parameter in cniSqlSelect |
You must use cniCreateMessage to create your output message.
MQSI will not do that for you.
CciMessage* outMessage = cniCreateMessage(&rc, cniGetMessageContext(&rc,message)); |
Topic: How to assign MQRFH2 values with usr and mcd ? |
lbrett
Replies: 5 Views: 3915
|
Forum: WebSphere Message Broker (ACE) Support Posted: Wed Oct 02, 2002 5:20 am Subject: How to assign MQRFH2 values with usr and mcd ? |
Also, is MQSI giving you this error? And do you build the RFH2 immediately after the "-- Enter SQL below this line." or is after you use OutputRoot.<Parser>... If it is the latter, what may be ... |
Topic: How to assign MQRFH2 values with usr and mcd ? |
lbrett
Replies: 5 Views: 3915
|
Forum: WebSphere Message Broker (ACE) Support Posted: Wed Oct 02, 2002 5:00 am Subject: How to assign MQRFH2 values with usr and mcd ? |
The format of the MQMD should be MQFMT_RF_HEADER_2 or 'MQHRF2 ' ('MQHRF2bb' where b represents a space).
Can you post a trace of the message after you build the MQRFH2 in the compute node (i.e. us ... |
Topic: Emergency ESQL Problem Compute Node |
lbrett
Replies: 16 Views: 12991
|
Forum: WebSphere Message Broker (ACE) Support Posted: Wed Oct 02, 2002 4:36 am Subject: Emergency ESQL Problem Compute Node |
One of two things are happening.
1. The column projno does not exist in stacey.project table (and keep in mind that case matters).
2. There is no data being returned from your select (i.e. the ... |
Topic: User name to access remote database |
lbrett
Replies: 12 Views: 7875
|
Forum: WebSphere Message Broker (ACE) Support Posted: Tue Oct 01, 2002 10:51 am Subject: User name to access remote database |
Thru the compute node, MQSI will connect to the database using the userid that the broker runs under. Your only other option is to write a custom node that establishes its own connection to the db. |
Topic: Emergency ESQL Problem Compute Node |
lbrett
Replies: 16 Views: 12991
|
Forum: WebSphere Message Broker (ACE) Support Posted: Tue Oct 01, 2002 3:29 am Subject: Emergency ESQL Problem Compute Node |
Try SET OutputRoot.XML.Result=Environment.Variables.ResultSet.Record[1]."projno" ;
You need to have a parser associated with every output message in a compute node. |
Topic: BIP2628E.................. |
lbrett
Replies: 5 Views: 10919
|
Forum: WebSphere Message Broker (ACE) Support Posted: Mon Sep 30, 2002 7:26 am Subject: BIP2628E.................. |
The problem is with your &. XML sees & as a special character. If you want the literal & to be present in your message use & instead of &. Therefore, your message should loo ... |
Topic: MESSAGE IS GETTING INTO O/P QUEUE AS IT IS, WHY? |
lbrett
Replies: 10 Views: 5207
|
Forum: WebSphere Message Broker (ACE) Support Posted: Wed Sep 18, 2002 11:58 am Subject: MESSAGE IS GETTING INTO O/P QUEUE AS IT IS, WHY? |
If you can post the ESQL in your compute node, that maybe helpful. |
Topic: Grouping and Sequencing |
lbrett
Replies: 11 Views: 5966
|
Forum: WebSphere Message Broker (ACE) Support Posted: Wed Sep 18, 2002 11:56 am Subject: Grouping and Sequencing |
The commit by message group will process message groups as a uow, if the output node is transactional. I can't believe that by setting these two options on the nodes would cause you to get a 2110. A ... |
Topic: MQSeries Java classes could not be located at Configuration |
lbrett
Replies: 13 Views: 15392
|
Forum: WebSphere Message Broker (ACE) Support Posted: Wed Sep 18, 2002 4:40 am Subject: MQSeries Java classes could not be located at Configuration |
The problem may be with your classpath. Ensure that quotes are around directories with spaces or that you use the short name. For example: "E:\Program Files\IBM\MQSeries\Java\lib\com.ibm.mq.jar" or ... |
Topic: Grouping and Sequencing |
lbrett
Replies: 11 Views: 5966
|
Forum: WebSphere Message Broker (ACE) Support Posted: Wed Sep 18, 2002 4:32 am Subject: Grouping and Sequencing |
Check commit by message group (under the advanced tab) on the input node and set transaction mode (under the advanced tab) of the as/400 output node to yes. |
Topic: Installation of MQSI V2.0.1 |
lbrett
Replies: 4 Views: 2356
|
Forum: WebSphere Message Broker (ACE) Support Posted: Wed Sep 18, 2002 4:22 am Subject: Installation of MQSI V2.0.1 |
Ensure that com.ibm.mq.jar is in your classpath. 2.0.2 and 2.1 comes with the jar file. In 2.0.1, MQSI doesn't know where the jar file is located, so it needs to be in the classpath. If you have it ... |