Author |
Message |
Topic: Alternative for TCP/IP monitor in message broker |
longng
Replies: 2 Views: 3096
|
Forum: WebSphere Message Broker (ACE) Support Posted: Wed Mar 20, 2013 6:20 pm Subject: Re: Alternative for TCP/IP monitor in message broker |
...
I just want to know is there any another way to see encrypted message? Any external tool that we can use to see the encrypted message outside the broker?
Thanks.
Hmmmmmm... you want to be ... |
Topic: mqsicreatebar taking to long to create BAR files |
longng
Replies: 7 Views: 8927
|
Forum: WebSphere Message Broker (ACE) Support Posted: Wed Mar 20, 2013 5:57 pm Subject: mqsicreatebar taking to long to create BAR files |
C'mon... give the woman/man a credit, she/he did the research thoroughly as to come up with something! as opposed to 'Hey, I am a bit lazy, tell me how to do this and that'
A practical solution ... |
Topic: Message Flow Design Considerations |
longng
Replies: 4 Views: 4331
|
Forum: WebSphere Message Broker (ACE) Support Posted: Tue Mar 19, 2013 5:24 pm Subject: Message Flow Design Considerations |
Somebody mentioned during the last few days about something to the effect reflecting the cliche of 'How long is a piece of string?'...
For all intents and purposes, it's not possible for anyone to ... |
Topic: SELECT FROM WHERE |
longng
Replies: 18 Views: 8548
|
Forum: WebSphere Message Broker (ACE) Support Posted: Mon Mar 18, 2013 8:41 pm Subject: SELECT FROM WHERE |
Many thanks for sharing your expertise and making this thread interesting. As a returned favour and my earlier promise, I would like to share the results so far (unconfirmed) of my performance analysi ... |
Topic: SELECT FROM WHERE |
longng
Replies: 18 Views: 8548
|
Forum: WebSphere Message Broker (ACE) Support Posted: Mon Mar 18, 2013 8:32 pm Subject: SELECT FROM WHERE |
By the way, it would be interesting to know if
EXISTS(THE(SELECT <element> FROM <array> WHERE <condition>))
performs better than
EXISTS(SELECT <element ... |
Topic: SELECT FROM WHERE |
longng
Replies: 18 Views: 8548
|
Forum: WebSphere Message Broker (ACE) Support Posted: Sat Mar 16, 2013 8:19 am Subject: SELECT FROM WHERE |
I'd probably go with
CREATE PROCEDURE BuildIDStructure ( )
BEGIN
DECLARE EnvOutIDRef REFERENCE TO Environment.Variables;
CREATE FIELD Environment.Variables ... |
Topic: SELECT FROM WHERE |
longng
Replies: 18 Views: 8548
|
Forum: WebSphere Message Broker (ACE) Support Posted: Sat Mar 16, 2013 7:37 am Subject: SELECT FROM WHERE |
More typos?
IF (EnvInIDRef) IS FALSE) THEN
Yes Esa! It's mine
Hopefully, there's no more
CREATE PROCEDURE BuildIDStructure ( )
BEGIN
CRE ... |
Topic: SELECT FROM WHERE |
longng
Replies: 18 Views: 8548
|
Forum: WebSphere Message Broker (ACE) Support Posted: Fri Mar 15, 2013 1:52 pm Subject: SELECT FROM WHERE |
The new code as posted will still not deploy as a couple of variables are not defined and the sense of the IF is wrong. However, the reason it will fail to do what you want (at least in the example po ... |
Topic: MRM Converting Text to Binary |
longng
Replies: 7 Views: 4838
|
Forum: WebSphere Message Broker (ACE) Support Posted: Fri Mar 15, 2013 9:55 am Subject: MRM Converting Text to Binary |
I was about to refer to the thread http://www.mqseries.net/phpBB2/viewtopic.php?t=63656&sid=5671e12568f5fd4ff28d6d61f68bb522 but Kimbert was there first!
Albeit, my reference is from a different ... |
Topic: SELECT FROM WHERE |
longng
Replies: 18 Views: 8548
|
Forum: WebSphere Message Broker (ACE) Support Posted: Fri Mar 15, 2013 7:45 am Subject: SELECT FROM WHERE |
Thank you! You all are so sharp as to be able to spot all those typos, which I inadvertently introduced while 'translating' from the actual existing code as to remove propriety information and/or supe ... |
Topic: SELECT FROM WHERE |
longng
Replies: 18 Views: 8548
|
Forum: WebSphere Message Broker (ACE) Support Posted: Thu Mar 14, 2013 7:59 pm Subject: SELECT FROM WHERE |
While we are doing analysis on performance implications of SELECT in our particular scenarios, we've come across a strange phenomenon!
It starts out innocent enough with
We have a set of input ... |
Topic: SELECT FROM DynRefVar |
longng
Replies: 18 Views: 8967
|
Forum: WebSphere Message Broker (ACE) Support Posted: Wed Mar 13, 2013 6:36 pm Subject: Re: SELECT FROM DynRefVar |
...
There is a little typo in the code, it has a comma where it should have a dot. This is how it should be:
IF NOT EXISTS(xxx.{CorrId}[]) THEN
SET xxx.{CorrId& ... |
Topic: SELECT FROM DynRefVar |
longng
Replies: 18 Views: 8967
|
Forum: WebSphere Message Broker (ACE) Support Posted: Tue Mar 12, 2013 8:43 pm Subject: SELECT FROM DynRefVar |
...
You could also try to build your own search / add routine with named loop over reference variable, move and leave statements. Then you perhaps can stop loop if you find the value from your list.
... |
Topic: SELECT FROM DynRefVar |
longng
Replies: 18 Views: 8967
|
Forum: WebSphere Message Broker (ACE) Support Posted: Tue Mar 12, 2013 11:27 am Subject: Re: SELECT FROM DynRefVar |
Now I replace the above classic code as to use dynamic reference variables (supposed to be more efficient)
Reference variables are only more efficient if they reduce the amount of tree navigation tha ... |
Topic: SELECT FROM DynRefVar |
longng
Replies: 18 Views: 8967
|
Forum: WebSphere Message Broker (ACE) Support Posted: Tue Mar 12, 2013 8:51 am Subject: Re: SELECT FROM DynRefVar |
Now I replace the above classic code as to use dynamic reference variables (supposed to be more efficient)
Reference variables are only more efficient if they reduce the amount of tree navigation tha ... |