Author |
Message |
Topic: Reset Content Descriptor not converting data properly |
tbt102
Replies: 11 Views: 6795
|
Forum: WebSphere Message Broker (ACE) Support Posted: Wed Jul 30, 2003 12:55 pm Subject: Reset Content Descriptor not converting data properly |
Hi kirani,
As a test I ran the 51 byte message through the following code and the conversion worked
DECLARE Fld as CHAR;
DECLARE Fld as CHAR;
SET Environment.Variables.InputMessage = cast( ... |
Topic: Reset Content Descriptor not converting data properly |
tbt102
Replies: 11 Views: 6795
|
Forum: WebSphere Message Broker (ACE) Support Posted: Wed Jul 30, 2003 4:12 am Subject: Reset Content Descriptor not converting data properly |
Hi kirani,
The message I'm working with is 51 bytes in length. As a test I had the message length increased to 64 at the OS/390 and FTPed to me. I put the new message through the flow and the con ... |
Topic: Reset Content Descriptor not converting data properly |
tbt102
Replies: 11 Views: 6795
|
Forum: WebSphere Message Broker (ACE) Support Posted: Wed Jul 30, 2003 4:09 am Subject: Reset Content Descriptor not converting data properly |
Hi Craig B,
My apologies to you and all the others. Yes the data is in EBCDIC it is FTP from the OS/390 in binary format but the final result is EBCDIC. Sorry about the confusion.
The cast was ... |
Topic: Reset Content Descriptor not converting data properly |
tbt102
Replies: 11 Views: 6795
|
Forum: WebSphere Message Broker (ACE) Support Posted: Tue Jul 29, 2003 4:48 am Subject: Reset Content Descriptor not converting data properly |
Hi kirani,
In the RCD I'm parsing the message using a MRM defn (CWF) and want the data converted from binary to text.
Sample message binary format:
ñõôòññóðòóðñðññðñðÔðøðà ... |
Topic: Reset Content Descriptor not converting data properly |
tbt102
Replies: 11 Views: 6795
|
Forum: WebSphere Message Broker (ACE) Support Posted: Mon Jul 28, 2003 11:10 am Subject: Reset Content Descriptor not converting data properly |
Hi kirani,
I have code a couple of flows similar to this one. As a test I did the following:
1) Put the message for the flow I'm working on in the MQInput of an old flow. The conversion failed
... |
Topic: Reset Content Descriptor not converting data properly |
tbt102
Replies: 11 Views: 6795
|
Forum: WebSphere Message Broker (ACE) Support Posted: Mon Jul 28, 2003 3:04 am Subject: Reset Content Descriptor not converting data properly |
kirani,
here is the code in the compute node:
DECLARE Fld1 CHAR;
DECLARE Fld2 CHAR;
DECLARE blobInputMessage BLOB;
SET blobInputMessage = InputRoot."BLOB"."BLOB";
SET Fld1 = CAST(SUBSTRING(blo ... |
Topic: Reset Content Descriptor not converting data properly |
tbt102
Replies: 11 Views: 6795
|
Forum: WebSphere Message Broker (ACE) Support Posted: Sun Jul 27, 2003 4:04 pm Subject: Reset Content Descriptor not converting data properly |
Hi All,
I have a RCD that is not converting a BOLB to char properly.
1. there is a message FTPed from the OS/390 in a binary format to an AIX box.
2. the message is put on the flows input queue. ... |
Topic: Why did the reset content descriptor work? |
tbt102
Replies: 4 Views: 3128
|
Forum: WebSphere Message Broker (ACE) Support Posted: Tue Jul 15, 2003 2:29 am Subject: Why did the reset content descriptor work? |
kirani,
Yes that answ the question. Thanks. |
Topic: Why did the reset content descriptor work? |
tbt102
Replies: 4 Views: 3128
|
Forum: WebSphere Message Broker (ACE) Support Posted: Mon Jul 14, 2003 10:47 am Subject: Why did the reset content descriptor work? |
Input Q ==> Compute ==> RCD ==> Compute ==> Output Q
Blob add from processing
repeat blob 2
count MRM[/code]
Thanks |
Topic: Why did the reset content descriptor work? |
tbt102
Replies: 4 Views: 3128
|
Forum: WebSphere Message Broker (ACE) Support Posted: Mon Jul 14, 2003 7:04 am Subject: Why did the reset content descriptor work? |
Hi all,
o I have a legacy (OS/390) file that is input to a flow as a blob
o I setup a message type that looks at the records as repeating. I added a repeat count and depending on to an existing C ... |
Topic: Automated regression testing tools and/or techniques. |
tbt102
Replies: 6 Views: 5365
|
Forum: WebSphere Message Broker (ACE) Support Posted: Sun Jul 13, 2003 2:50 am Subject: Automated regression testing tools and/or techniques. |
Hi all,
Are there any automated regression testing tools and/or techniques for WMQI?
I realize that every project/flow is different but I'm hoping for something generic that will assist.
Than ... |
Topic: How to get every instruction executed in a compute node |
tbt102
Replies: 3 Views: 3495
|
Forum: WebSphere Message Broker (ACE) Support Posted: Sun Jul 13, 2003 2:46 am Subject: How to get every instruction executed in a compute node |
I have implemented both and got the desired results. Thanks |
Topic: How to get every instruction executed in a compute node |
tbt102
Replies: 3 Views: 3495
|
Forum: WebSphere Message Broker (ACE) Support Posted: Thu Jul 10, 2003 10:07 am Subject: How to get every instruction executed in a compute node |
Hi all,
I'm using a trace node in my flow and trying to get every instruction executed in a particular compute node into my trace log.
Currently it looks like n number lines is being rolled off ... |
Topic: Sorting a repeating structure. |
tbt102
Replies: 6 Views: 7218
|
Forum: WebSphere Message Broker (ACE) Support Posted: Tue Jun 24, 2003 3:48 am Subject: Sorting a repeating structure. |
Thanks Craig.
Does anyone have any experience with writing recursive ESQL procedures or functions to perform a sort of any kind?
If so would you please share your experience and or code?
Than ... |
Topic: Sorting a repeating structure. |
tbt102
Replies: 6 Views: 7218
|
Forum: WebSphere Message Broker (ACE) Support Posted: Tue Jun 24, 2003 3:01 am Subject: Sorting a repeating structure. |
Hi All,
I have a message that has a repeating structure. I need to sort the repeating structure on 4 elements before I can begin processing. Also I'm using the CWF layer.
Does WMQI have a buil ... |