Author |
Message |
Topic: MQGet Transaction handling |
SixBlade
Replies: 12 Views: 10257
|
Forum: WebSphere Message Broker (ACE) Support Posted: Thu Sep 20, 2007 6:15 am Subject: MQGet Transaction handling |
Hi,
some testing regarding this:
queue "A", with message #1
queue "B", with message #2
Flow with MQInput(q A) --> MQGet(q B) --> Throw
If
-MQInput:trans = yes
... |
Topic: Backed out error is caught by CustomNode ? |
SixBlade
Replies: 2 Views: 2777
|
Forum: WebSphere Message Broker (ACE) Support Posted: Wed Mar 15, 2006 4:18 am Subject: Backed out error is caught by CustomNode ? |
Hi, it's the propagate statement that's causes/throws exceptions later in the flow. When you propagate something and that "fails" (because the subsequent nodes failed to process the message), you get ... |
Topic: Setting ApplIdentityData in Pro*C |
SixBlade
Replies: 15 Views: 13557
|
Forum: WebSphere Message Broker (ACE) Support Posted: Wed Mar 15, 2006 2:00 am Subject: Setting ApplIdentityData in Pro*C |
tanuj33, you need to check the OpenCode and CompCode and for example see if it differs from MQRC_NONE. and MQCC_OK, like stated. Then print Reason, printf("Reason code: %ld\n", Reason); Then much easi ... |
Topic: Second Header of an xml |
SixBlade
Replies: 9 Views: 5689
|
Forum: WebSphere Message Broker (ACE) Support Posted: Tue Mar 14, 2006 2:41 am Subject: Second Header of an xml |
Hi,
as far as I understand, the parser won't treat the value after <?CWRSD as xml attributes, it's just a value:
From http://aspalliance.com/515#Page2
"Firstly, what is an XML processing i ... |
Topic: Resubmitting the Message |
SixBlade
Replies: 3 Views: 3259
|
Forum: IBM MQ Java / JMS Posted: Thu Mar 09, 2006 9:03 am Subject: Resubmitting the Message |
Hi,
if it's a basic thing it's probably well documented somewhere. What are you trying to do, setup a request/reply scenario? Sounds like you're doing that and trying to resend messages you didn't ... |
Topic: XMLNSC mixed content question |
SixBlade
Replies: 11 Views: 9655
|
Forum: WebSphere Message Broker (ACE) Support Posted: Mon Mar 06, 2006 4:58 am Subject: XMLNSC mixed content question |
Sometimes when you type stuff it takes a while to realize it probably wasn't the right sequence of characters...
It should NOT be XMLNSC.Value, that will get whitespace as well...I was thinking of ... |
Topic: XMLNSC mixed content question |
SixBlade
Replies: 11 Views: 9655
|
Forum: WebSphere Message Broker (ACE) Support Posted: Mon Mar 06, 2006 3:26 am Subject: XMLNSC mixed content question |
Does it help if you try to tell what you expect:
ie instead of "set headerValue = origin.response.simpleHeaders.[i]"
use "set headerValue = origin.response.simpleHeaders.(XMLNSC.Value)[i]"
Th ... |
Topic: Large Messages in the Broker |
SixBlade
Replies: 3 Views: 3049
|
Forum: WebSphere Message Broker (ACE) Support Posted: Wed Mar 01, 2006 6:21 am Subject: Large Messages in the Broker |
For such a large message as 10GB, I would probably rather use FTP than MQ as transport (or good compression before putting on the wire), and if use broker, be really careful to not parse entire messag ... |
Topic: Removing strange characters (X'3E7E03') from a large message |
SixBlade
Replies: 4 Views: 3429
|
Forum: WebSphere Message Broker (ACE) Support Posted: Wed Mar 01, 2006 5:09 am Subject: Removing strange characters (X'3E7E03') from a large message |
Another clarification: 32K is not a maximum size for MQ v5 messages, think default on queue/channels etc is 4MB, and can be up to 100MB. MQ won't split messages either, unless some program (exit progr ... |
Topic: WSDL question |
SixBlade
Replies: 12 Views: 7940
|
Forum: WebSphere Message Broker (ACE) Support Posted: Tue Feb 28, 2006 9:05 am Subject: WSDL question |
So, you don't want to use SOAP or message sets, but would like WSDL?
I mean you want to avoid these tools, but would like to use the WSDL definition type to describe the services to your clients?
... |
Topic: VSS perspective WBIMB V5 |
SixBlade
Replies: 4 Views: 2917
|
Forum: WebSphere Message Broker (ACE) Support Posted: Thu Feb 23, 2006 1:46 am Subject: VSS perspective WBIMB V5 |
If I copy the files (1.6 though) to the eclipse plugin folder, then VSS appears as a menu option, but it's not a perspective. |
Topic: How to send input SOAP Message to HTTPInput Node |
SixBlade
Replies: 6 Views: 4305
|
Forum: WebSphere Message Broker (ACE) Support Posted: Wed Feb 22, 2006 4:26 am Subject: How to send input SOAP Message to HTTPInput Node |
You're asking how to send a SOAP message to the Broker? Assuming then you know how to receive it in the broker as well (ie parsing soap envelope etc). If you're talking about sending, it can be done f ... |
Topic: problem using Environment variables |
SixBlade
Replies: 6 Views: 2534
|
Forum: WebSphere Message Broker (ACE) Support Posted: Mon Feb 20, 2006 4:38 am Subject: problem using Environment variables |
Just inserting character value from Env into database varchar field (if that's what you're doing) should work fine,....normally. What database is it, DB2? The target column,...varchar, blob/clob,....? ... |
Topic: JMS & BlockIP2 |
SixBlade
Replies: 7 Views: 4610
|
Forum: IBM MQ Java / JMS Posted: Wed Dec 07, 2005 1:02 am Subject: JMS & BlockIP2 |
Thanks, that's the piece of code I didn't manage to find in the manuals for some reason. Know I was mixing JMS and base java api, it happened to work but didn't feel great so to speak. May I ask wher ... |
Topic: JMS & BlockIP2 |
SixBlade
Replies: 7 Views: 4610
|
Forum: IBM MQ Java / JMS Posted: Tue Dec 06, 2005 8:23 am Subject: JMS & BlockIP2 |
Don't know if this question still needs an answer, but this is basically what I set on the conn factory:
myQueueConnectionFactory.setHostName( host );
myQueueConnectionFactory.setPo ... |