Author |
Message |
Topic: Collector Node Catch Terminal Opps! |
alewis
Replies: 8 Views: 9778
|
Forum: WebSphere Message Broker (ACE) Support Posted: Thu Jan 20, 2011 8:54 am Subject: Collector Node Catch Terminal Opps! |
I had created a PMR for this and fix is provided in fix pack 2 but if you are using MB 7.0.0.1 use APAR IC71265 |
Topic: UNABLE to connect to remote queue manager through rfhutil |
alewis
Replies: 10 Views: 11679
|
Forum: WebSphere Message Broker (ACE) Support Posted: Tue Oct 12, 2010 5:26 am Subject: UNABLE to connect to remote queue manager through rfhutil |
Have you installed the MQ client on the pc from where you are trying to access the remote queue manager? RFHUtil requires mq client libraries to connect to the remote queue manager |
Topic: SLEEP function in Message Broker 7 |
alewis
Replies: 23 Views: 30612
|
Forum: WebSphere Message Broker (ACE) Support Posted: Tue Aug 03, 2010 10:20 am Subject: SLEEP function in Message Broker 7 |
Well if the thread is not released after calling the SLEEP function, I would stop the flow using the timer node as described in http://www.ibm.com/developerworks/websphere/library/techarticles/0603_sc ... |
Topic: SLEEP function in Message Broker 7 |
alewis
Replies: 23 Views: 30612
|
Forum: WebSphere Message Broker (ACE) Support Posted: Fri Jul 30, 2010 11:56 am Subject: SLEEP function in Message Broker 7 |
Hi,
For introducing a delay while processing a message in a message flow I had used the timer node in version 6 but in Broker 7, there is a Sleep ESQL function. Is this the recommended way to introdu ... |
Topic: Message rollback |
alewis
Replies: 5 Views: 5154
|
Forum: WebSphere Message Broker (ACE) Support Posted: Thu Nov 16, 2006 2:04 pm Subject: Message rollback |
It will not enter into an infinite loop as in the catch/failure path I would check the backout count and stop the message flow if the backcount count has exceeded the threshold limit |
Topic: Message rollback |
alewis
Replies: 5 Views: 5154
|
Forum: WebSphere Message Broker (ACE) Support Posted: Thu Nov 16, 2006 10:55 am Subject: Message rollback |
I know how to enter the retry mode but when the threshold limit is reached, the broker does the following:
Checks to see if the backout queue is defined and delivers the message
If the backout cou ... |
Topic: Message rollback |
alewis
Replies: 5 Views: 5154
|
Forum: WebSphere Message Broker (ACE) Support Posted: Thu Nov 16, 2006 10:39 am Subject: Message rollback |
The scenario is MQInput --> Compute ---> HttpRequest --->Compute-->MQOutput
If the HttpRequest fails i.e communication to web services fails, I should be retrying till the threshold cou ... |
Topic: XML to BLOB to java.lang.String conversion |
alewis
Replies: 8 Views: 11821
|
Forum: WebSphere Message Broker (ACE) Support Posted: Tue Nov 07, 2006 7:35 am Subject: XML to BLOB to java.lang.String conversion |
The incoming BLOB can be a TDS or XMLNS message. How do i know whats the format of the message before I try reparsing the message?
Should I try
createElementAsLastChildFromBitstream(byte[ ... |
Topic: XML to BLOB to java.lang.String conversion |
alewis
Replies: 8 Views: 11821
|
Forum: WebSphere Message Broker (ACE) Support Posted: Tue Nov 07, 2006 6:31 am Subject: XML to BLOB to java.lang.String conversion |
Its after the call to new String(byte[]). |
Topic: XML to BLOB to java.lang.String conversion |
alewis
Replies: 8 Views: 11821
|
Forum: WebSphere Message Broker (ACE) Support Posted: Tue Nov 07, 2006 5:17 am Subject: XML to BLOB to java.lang.String conversion |
I need to store the entire incoming message(InputBody) which can be an MRM, XML, XMLNS or a BLOB. This can be done using the copyElementTree() on the parser element for MRM,XML or XMLNS but if used on ... |
Topic: XML to BLOB to java.lang.String conversion |
alewis
Replies: 8 Views: 11821
|
Forum: WebSphere Message Broker (ACE) Support Posted: Thu Nov 02, 2006 2:47 pm Subject: XML to BLOB to java.lang.String conversion |
While converting XML to byte MbElement inRoot=contact admin.getMessage().getRootElement();
MbElement inBody=inRoot.getLastChild();
String parserName=inBody.getParserClassName ... |
Topic: copy() and copyElementTree() in java compute |
alewis
Replies: 3 Views: 5012
|
Forum: WebSphere Message Broker (ACE) Support Posted: Mon Aug 21, 2006 3:34 am Subject: copy() and copyElementTree() in java compute |
We are using MB 6, Fix pack 1 |
Topic: copy() and copyElementTree() in java compute |
alewis
Replies: 3 Views: 5012
|
Forum: WebSphere Message Broker (ACE) Support Posted: Sun Aug 20, 2006 6:11 pm Subject: copy() and copyElementTree() in java compute |
Would like to know the difference between copy() and copyElementTree() and when can they be used.
In the sample code, calling copy() on an element(header) causes a severe Abend error.
The inc ... |