Author |
Message |
Topic: MB Workflows handson |
Mercury
Replies: 1 Views: 1955
|
Forum: WebSphere Message Broker (ACE) Support Posted: Sun Feb 11, 2007 12:00 am Subject: MB Workflows handson |
Can any one point me to the material where i can find some handson exercises in designing workflows in MB6.0/MQSI
other than Samples gallery
thanks
Mercury |
Topic: Propagate Statement |
Mercury
Replies: 2 Views: 2405
|
Forum: WebSphere Message Broker (ACE) Support Posted: Thu Feb 08, 2007 4:43 am Subject: Propagate Statement |
Return False will stop the compute node propagating the message implicitly.
Propagate stmt do explicit propagation(default out) according to requirement of the user. |
Topic: How to build Jar file in Toolkit |
Mercury
Replies: 2 Views: 2924
|
Forum: WebSphere Message Broker (ACE) Support Posted: Thu Jan 11, 2007 12:21 am Subject: How to build Jar file in Toolkit |
I am calling Java fns from my flow .Can I know how to build the jar files for the java code ,so that I can add it bar file deploy them inthe execution groups.I am not using JCN in my flow.JCN automati ... |
Topic: max size of exception list |
Mercury
Replies: 2 Views: 2343
|
Forum: WebSphere Message Broker (ACE) Support Posted: Sun Jan 07, 2007 9:45 pm Subject: max size of exception list |
It depends on the number of exception occured in the message flow.Instead we can choose a data type in a SQL which grows dynamically depending on your requirement
regards,
Merecury.. |
Topic: Compute mode |
Mercury
Replies: 3 Views: 2896
|
Forum: WebSphere Message Broker (ACE) Support Posted: Fri Jan 05, 2007 12:02 am Subject: Compute mode |
any inputs for the above post would be appreciated...
regards,
Merecury |
Topic: ParserException BIP5424S |
Mercury
Replies: 2 Views: 3448
|
Forum: WebSphere Message Broker (ACE) Support Posted: Thu Jan 04, 2007 9:01 pm Subject: ParserException BIP5424S |
Hi,
My input and output messages are of type TDS. In MQInput node, i have given correct values for MRM set, type and format. it is giving the following error while putting the message into output q ... |
Topic: Compute mode |
Mercury
Replies: 3 Views: 2896
|
Forum: WebSphere Message Broker (ACE) Support Posted: Thu Jan 04, 2007 7:47 pm Subject: Compute mode |
Hi MBIANS,
I had a compute node across all the flows in my project. And compute modes of these nodes are improperly set. if compute node is modifying only LocalEnvironment the mode should be set to L ... |
Topic: Passing empty message |
Mercury
Replies: 10 Views: 8125
|
Forum: WebSphere Message Broker (ACE) Support Posted: Sun Dec 17, 2006 5:48 am Subject: Re: Passing empty message |
I dont want the empty message to pass through te MQInput node.
One way out is to set the message format to BLOB on MQINPUT node.Then check messahe length and if it happens to be greater than 0,us ... |
Topic: Passing empty message |
Mercury
Replies: 10 Views: 8125
|
Forum: WebSphere Message Broker (ACE) Support Posted: Wed Dec 13, 2006 5:15 am Subject: Passing empty message |
How can you put an empty message in the input queue |
Topic: Passing empty message |
Mercury
Replies: 10 Views: 8125
|
Forum: WebSphere Message Broker (ACE) Support Posted: Wed Dec 13, 2006 1:55 am Subject: Re: Passing empty message |
But, when I pass an empty message means with no values at all in the message,
Can you tell me more on this.Are you passing the message with all tags but no values in them or just empty blank message |
Topic: Passing reference variable as INOUT to the java procedure |
Mercury
Replies: 3 Views: 2952
|
Forum: WebSphere Message Broker (ACE) Support Posted: Mon Dec 11, 2006 6:30 am Subject: Passing reference variable as INOUT to the java procedure |
thanks for the reply jefflowrey
my Idea was storing the modified list in the dum and copying again into actual.Since modifying the INOUT reference parameter directly doesn't give the modified lis ... |
Topic: Passing reference variable as INOUT to the java procedure |
Mercury
Replies: 3 Views: 2952
|
Forum: WebSphere Message Broker (ACE) Support Posted: Mon Dec 11, 2006 5:59 am Subject: Passing reference variable as INOUT to the java procedure |
Hi MBIANS,
I am trying to pass a reference variable to the Java procedure.My requirement is -- java function should modify the reference variable
Here is my code
CALL CopyMessageHeaders();
CREAT ... |
Topic: Cleaning/rebuiding messageflow project takes hours |
Mercury
Replies: 7 Views: 4834
|
Forum: WebSphere Message Broker (ACE) Support Posted: Wed Dec 06, 2006 11:40 pm Subject: Cleaning/rebuiding messageflow project takes hours |
Even I faced this kind of problem with MB6
Instead of using Build Automatically or Rebuild or Clean options
use Build Working Set option to build .This may reduce some build time |
Topic: Shared variables -Database |
Mercury
Replies: 1 Views: 2469
|
Forum: WebSphere Message Broker (ACE) Support Posted: Mon Dec 04, 2006 4:39 am Subject: Shared variables -Database |
Hi MBIans,
I am using shared variables for storing the db details temporarily and use them (to decrease db hits in the flow)
My doubt is where are these shared variables stored.
i guess they are s ... |
Topic: Calling Java function from ESQL Compute |
Mercury
Replies: 4 Views: 4178
|
Forum: WebSphere Message Broker (ACE) Support Posted: Mon Nov 27, 2006 1:24 am Subject: (Solved) Calling Java function from ESQL Compute |
Problem solved
public static Long myMethod3(Long Opd1,Long Opd2 ,Long[] Res3) {
int temp_a,temp_b,temp_res;
temp_a=Opd1.intValue();
temp_b=Opd2.intValue();
tem ... |