Author |
Message |
Topic: MQGem Software releases version 9.2.1 of MO71 |
saini
Replies: 4 Views: 15495
|
Forum: News/Updates Posted: Wed Nov 18, 2020 3:10 pm Subject: pre requisites |
Does this needs MQ Client installed or just Java libraries? I have not used this recently and I might be dating myself by saying I did use this utility when it was a MO71 support pack offered by IBM.
... |
Topic: Exception Handling requirements... |
saini
Replies: 3 Views: 3147
|
Forum: WebSphere Message Broker (ACE) Support Posted: Thu Aug 03, 2006 3:46 am Subject: Exception Handling requirements... |
Yes I agree. My requirement is to have two try/catch constructs. The inner one needs to capture and handle a specific error. However, if it not that kind of error I need to rethrow that exception so t ... |
Topic: Exception Handling requirements... |
saini
Replies: 3 Views: 3147
|
Forum: WebSphere Message Broker (ACE) Support Posted: Wed Aug 02, 2006 9:42 am Subject: Exception Handling requirements... |
Folks:
I have a requirement for a nested exception handler. The subflow needs an exception handler to handle the inner exception. However, if it can't handle that exception I need to re-throw the e ... |
Topic: Having trouble with Positional Fields within XML... |
saini
Replies: 6 Views: 4443
|
Forum: WebSphere Message Broker (ACE) Support Posted: Wed Sep 21, 2005 4:27 am Subject: Having trouble with Positional Fields within XML... |
The following worked:
CREATE FIELD OutputRoot.XML.Test;
DECLARE myREF REFERENCE TO OutputRoot.XML.Test;
CREATE LASTCHILD OF myREF TYPE Name NAME 'F1';
CREATE LASTCHILD OF myREF TYPE Name ... |
Topic: Having trouble with Positional Fields within XML... |
saini
Replies: 6 Views: 4443
|
Forum: WebSphere Message Broker (ACE) Support Posted: Wed Sep 21, 2005 3:28 am Subject: Having trouble with Positional Fields within XML... |
I have tried:
SET OutputRoot.XML.Test.F1 = 'test1';
SET OutputRoot.XML.Test.F2 = 'test2';
SET OutputRoot.XML.Test.F1[2] = 'test3';
SET OutputRoot.XML.Test.F2[2] = 'test4';
I also tried:
SE ... |
Topic: Having trouble with Positional Fields within XML... |
saini
Replies: 6 Views: 4443
|
Forum: WebSphere Message Broker (ACE) Support Posted: Tue Sep 20, 2005 2:38 pm Subject: Having trouble with Positional Fields within XML... |
I have an interesting problem! I have a requirement to generate the following XML in a compute node.
<Test>
<F1>test1</F1>
<F2>test2</F2>
<F1>test ... |
Topic: calling stored procedure in Sybase 12.5 |
saini
Replies: 2 Views: 3769
|
Forum: WebSphere Message Broker (ACE) Support Posted: Fri Sep 16, 2005 12:30 pm Subject: calling stored procedure in Sybase 12.5 |
Thanks for the quick reply.
Yes, actually I did want them INOUT since I was also passing some values into the stored procedure. I couldn't however, figure out how to specify an INOUT for the stored ... |
Topic: calling stored procedure in Sybase 12.5 |
saini
Replies: 2 Views: 3769
|
Forum: WebSphere Message Broker (ACE) Support Posted: Fri Sep 16, 2005 8:06 am Subject: calling stored procedure in Sybase 12.5 |
I am having trouble calling an external database stored procedure which resides in Sybase 12.5. I m using MB version 5 with CSD5 on Windows 2000 server machine.
The DB stored procedure has 3 parame ... |
Topic: XML with UTF-16 characters... |
saini
Replies: 0 Views: 1539
|
Forum: WebSphere Message Broker (ACE) Support Posted: Thu Sep 08, 2005 3:35 pm Subject: XML with UTF-16 characters... |
I have a scenario where an external application (written by some else) puts an XML into a Queue with UTF-16. However, in a message flow when the BROKER picks up the message it fails with 'Invalid XML' ... |
Topic: sendmail plugin node |
saini
Replies: 8 Views: 4574
|
Forum: WebSphere Message Broker (ACE) Support Posted: Sat Aug 20, 2005 1:41 pm Subject: sendmail plugin node |
No I didn't.
And please quit adding white space to the messages. |
Topic: sendmail plugin node |
saini
Replies: 8 Views: 4574
|
Forum: WebSphere Message Broker (ACE) Support Posted: Sat Aug 20, 2005 7:34 am Subject: sendmail plugin node |
Can you post what you did that made it work so other people can also benefit?
Thanks. |
Topic: ResetContentDescriptor is counter-intutive! |
saini
Replies: 1 Views: 1480
|
Forum: WebSphere Message Broker (ACE) Support Posted: Thu Oct 07, 2004 9:33 am Subject: ResetContentDescriptor is counter-intutive! |
Hello Everyone:
I have an easy question:
I have a MRM with two physical layers (CWF and XML). All I want is to take the MRM message and convert it from CWF to XML.
I created a message flow wi ... |
Topic: ESQL XML attribute problems... |
saini
Replies: 2 Views: 2733
|
Forum: WebSphere Message Broker (ACE) Support Posted: Sun Aug 29, 2004 4:43 am Subject: ESQL XML attribute problems... |
Thanks for the reply.
As you correctly mentioned the output even though looks incorrect is correct and the application getting the reply was able to correctly parse the message.
Thanks. |
Topic: ESQL XML attribute problems... |
saini
Replies: 2 Views: 2733
|
Forum: WebSphere Message Broker (ACE) Support Posted: Fri Aug 27, 2004 5:37 am Subject: ESQL XML attribute problems... |
Hi All,
I seem to have an interesting problem.
I need to create the following XML output from a COMPUTE node;
<root>
<DB2 table="test" where="empno='100' " />
</root>
... |
Topic: Having trouble Adding Bytes to Output Msg BLOB... |
saini
Replies: 1 Views: 1979
|
Forum: WebSphere Message Broker (ACE) Support Posted: Thu Jul 22, 2004 8:25 am Subject: Having trouble Adding Bytes to Output Msg BLOB... |
Never mind. I got it. I was missing the CCSID clause.
Thanks. |