Author |
Message |
Topic: Converting data structure in Enviroment.Variables to BLOB |
jsanchose
Replies: 5 Views: 4081
|
Forum: WebSphere Message Broker (ACE) Support Posted: Thu Aug 10, 2006 4:35 am Subject: Converting data structure in Enviroment.Variables to BLOB |
I think you need to define a MessageSet...
and type a sentence like:
SET Environment.Variables.BLOB =
CAST(ASBITSTREAM(Environment.Variables.BLOBTEMP
ENCODING 785 CCSID 500
SET yourM ... |
Topic: SUB_SWIFT_VALIDATION |
jsanchose
Replies: 1 Views: 1814
|
Forum: WebSphere Message Broker (ACE) Support Posted: Thu May 25, 2006 10:23 pm Subject: SUB_SWIFT_VALIDATION |
Hi All.
I'm working with SWIFT FIN Solution (Support Pac IA0T).
The question is:
SUB_SWIFT_VALIDATION subflow is commonly used only for test or is used in Production too ?.
Thanks. |
Topic: MQReply and MsgId |
jsanchose
Replies: 3 Views: 2801
|
Forum: WebSphere Message Broker (ACE) Support Posted: Tue May 16, 2006 1:24 am Subject: MQReply and MsgId |
All right, it's the best solution (i think).
SET OutputLocalEnvironment.Destination.MQ.DestinationData1].queueName = OutputRoot.MQMD.ReplyToQ;
Thanks, thanks, thanks, Jef. |
Topic: MQReply and MsgId |
jsanchose
Replies: 3 Views: 2801
|
Forum: WebSphere Message Broker (ACE) Support Posted: Mon May 15, 2006 3:30 am Subject: MQReply and MsgId |
I need to make use of the MQReply Node.
I need to put my own MsgId but an automatic generated MsgId overwrite the value.
what can i do?.
Thanks. |
Topic: [SOLVED]MQOutput node QM name |
jsanchose
Replies: 30 Views: 16057
|
Forum: WebSphere Message Broker (ACE) Support Posted: Mon May 15, 2006 3:28 am Subject: Excuse me |
Sorry, the previous message is an error.
Excuse me. |
Topic: [SOLVED]MQOutput node QM name |
jsanchose
Replies: 30 Views: 16057
|
Forum: WebSphere Message Broker (ACE) Support Posted: Mon May 15, 2006 3:24 am Subject: MQReply and MsgId. |
I need to make use of the MQReply Node.
I need to put my own MsgId but an automatic generated MsgId overwrite the value.
what can i do?.
Thanks. |
Topic: Passing Environment from a flow to another |
jsanchose
Replies: 8 Views: 5028
|
Forum: WebSphere Message Broker (ACE) Support Posted: Tue May 09, 2006 8:51 am Subject: Passing Environment from a flow to another |
madi, subflow would be a valid solution but I prefer a separated flow for some reasons:
- Maintenance of Common flow is responsability of Infrastructure Support Group.
- Development of Specific ... |
Topic: Passing Environment from a flow to another |
jsanchose
Replies: 8 Views: 5028
|
Forum: WebSphere Message Broker (ACE) Support Posted: Tue May 09, 2006 7:47 am Subject: Passing Environment from a flow to another |
madi, I've 51 specific flows and only one common flow, if I change CommonFlow by a SubFlow, the SubFlow will be replicated 51 times.
I win independence having a separated common flow.
wschutz, y ... |
Topic: Passing Environment from a flow to another |
jsanchose
Replies: 8 Views: 5028
|
Forum: WebSphere Message Broker (ACE) Support Posted: Tue May 09, 2006 6:45 am Subject: Passing Environment from a flow to another |
Hi.
I'm using SWIFT_2005_050615 message set.
I've this schema:
Queue1 --> SpecificFlow --> Queue2
Queue2 --> CommonFlow --> Queue3 --> MQSA --> SAA --> SWIFTNet
I'v ... |
Topic: Setting de Message_Id in ESQL |
jsanchose
Replies: 13 Views: 6840
|
Forum: WebSphere Message Broker (ACE) Support Posted: Thu Apr 27, 2006 12:56 pm Subject: Setting de Message_Id in ESQL |
I'm happy.
At end that's the solution:
...
DECLARE WMSGID BLOB;
SET WMSGID = CAST(Swf.SW20 AS BLOB CCSID 850);
SET OutputRoot.MQMD.MsgId = WMSGID || REPLICATE(X'00',24 - LENGTH(WMSGID));
... |
Topic: Setting de Message_Id in ESQL |
jsanchose
Replies: 13 Views: 6840
|
Forum: WebSphere Message Broker (ACE) Support Posted: Wed Apr 26, 2006 12:58 pm Subject: Setting de Message_Id in ESQL |
That's the question.
With this sentence:
SET OutputRoot.MQMD.MsgId = X'C5C1C96DE3D9C66DD96DD4E3F2F0F2000000000000000000';
The flow run OK.
With this other:
SET OutputRoot.MQ ... |
Topic: Setting de Message_Id in ESQL |
jsanchose
Replies: 13 Views: 6840
|
Forum: WebSphere Message Broker (ACE) Support Posted: Wed Apr 26, 2006 11:45 am Subject: Setting de Message_Id in ESQL |
Sorry, I was tried this like what madi said previously.I have obtained the same error, maybe a basic stuff for many people but it's a hard problem for me.
Can you help me again?
Best regards. |
Topic: Setting de Message_Id in ESQL |
jsanchose
Replies: 13 Views: 6840
|
Forum: WebSphere Message Broker (ACE) Support Posted: Wed Apr 26, 2006 10:03 am Subject: Setting de Message_Id in ESQL |
Here the MessageSet and other porperties.
...
SET OutputRoot.Properties.MessageSet = 'HV0TGUO002001';
SET OutputRoot.Properties.MessageType = 'SwiftEnvelope';
SET OutputRoot.Properties.Me ... |
Topic: Setting de Message_Id in ESQL |
jsanchose
Replies: 13 Views: 6840
|
Forum: WebSphere Message Broker (ACE) Support Posted: Wed Apr 26, 2006 9:13 am Subject: Setting de Message_Id in ESQL |
Of course.
...
CREATE FIELD OutputRoot.MRM.FIN.TEXT_BLOCK.MT103;
DECLARE Swf REFERENCE TO OutputRoot.MRM.FIN.TEXT_BLOCK.MT103;
DECLARE I INTEGER;
-- Campo 20 Obligatorio - Sender's Refer ... |
Topic: Setting de Message_Id in ESQL |
jsanchose
Replies: 13 Views: 6840
|
Forum: WebSphere Message Broker (ACE) Support Posted: Wed Apr 26, 2006 8:12 am Subject: Setting de Message_Id in ESQL |
When I assign the value as you say I obtain an exception in node MQOutput.
"Text wrong type exception".
Catalog BIPv500
Severity 3
Number 2328
CHARACTER <--> BLOB
A BLOB is expecte ... |