Author |
Message |
Topic: pdf on Java compute node |
christian witschel
Replies: 5 Views: 5178
|
Forum: WebSphere Message Broker (ACE) Support Posted: Wed Mar 26, 2008 5:05 am Subject: pdf on Java compute node |
here is at least the api:
http://publib.boulder.ibm.com/infocenter/wbihelp/v6rxmx/topic/com.ibm.etools.mft.broker.doc/com/ibm/broker/plugin/package-overview.html
Its not javadoc but better then noth ... |
Topic: Determining the Queue Manager Name in Message Flow |
christian witschel
Replies: 6 Views: 5996
|
Forum: WebSphere Message Broker (ACE) Support Posted: Wed Mar 26, 2008 4:59 am Subject: Determining the Queue Manager Name in Message Flow |
and in Java it would be:
getBroker().getName();
where getBroker is a method of MbNode.
http://publib.boulder.ibm.com/infocenter/wbihelp/v6rxmx/topic/com.ibm.etools.mft.broker.doc/com/ibm/brok ... |
Topic: createElementAsLastChildFromBitstream throws no exception |
christian witschel
Replies: 9 Views: 12078
|
Forum: WebSphere Message Broker (ACE) Support Posted: Wed Mar 26, 2008 4:32 am Subject: createElementAsLastChildFromBitstream throws no exception |
Hi,
problem solved.
The PMR clarified that the method truely does not throw an exception, because no parsing actually takes place within it.
Calling this method just tells the broker to ready its ... |
Topic: Get Message - skipping Message Header |
christian witschel
Replies: 18 Views: 35239
|
Forum: Mainframe, CICS, TXSeries Posted: Wed Mar 26, 2008 4:19 am Subject: Get Message - skipping Message Header |
can someone hint me how to correctly skip rfh and rfh2 headers in java?
The C example above is already very helpfull. However, I do not understand how you know how much bytes to skip until the next ... |
Topic: createElementAsLastChildFromBitstream throws no exception |
christian witschel
Replies: 9 Views: 12078
|
Forum: WebSphere Message Broker (ACE) Support Posted: Fri Feb 08, 2008 8:45 am Subject: createElementAsLastChildFromBitstream throws no exception |
Thats not it.
I am rethrowing and also writing an entry to a log file.
Also the code after the method still within the same try catch is executed and then has a problem with an empty node.
Neit ... |
Topic: createElementAsLastChildFromBitstream throws no exception |
christian witschel
Replies: 9 Views: 12078
|
Forum: WebSphere Message Broker (ACE) Support Posted: Fri Feb 08, 2008 8:02 am Subject: createElementAsLastChildFromBitstream throws no exception |
What happens if you specify the message format name incorrectly? ( just trying to find out whether you are getting *any* exceptions from the parser)
No exception is thrown. The element created is j ... |
Topic: createElementAsLastChildFromBitstream throws no exception |
christian witschel
Replies: 9 Views: 12078
|
Forum: WebSphere Message Broker (ACE) Support Posted: Fri Feb 08, 2008 7:57 am Subject: createElementAsLastChildFromBitstream throws no exception |
one thought just came to me:
my createElementAsLastChildFromBitstream is within a try catch block just for this statement. I am catching java.lang.Exception. Could it be that a Parsing exception is ... |
Topic: createElementAsLastChildFromBitstream throws no exception |
christian witschel
Replies: 9 Views: 12078
|
Forum: WebSphere Message Broker (ACE) Support Posted: Fri Feb 08, 2008 7:35 am Subject: createElementAsLastChildFromBitstream throws no exception |
Hi,
Right, it is the ResetContentDescriptor node (just call it ApplyMessageSet all the time, my mistake).
The error message from the ResetContentDescriptior node will depend on what is wrong with ... |
Topic: MRM - Variable Length Records problem |
christian witschel
Replies: 5 Views: 4711
|
Forum: WebSphere Message Broker (ACE) Support Posted: Fri Feb 08, 2008 1:54 am Subject: MRM - Variable Length Records problem |
Simple workaround solution:
create a compute node and walk through your file in advance filling the last field to the max so it matches your message set.
(if the dog does not come the bone, the ... |
Topic: createElementAsLastChildFromBitstream throws no exception |
christian witschel
Replies: 9 Views: 12078
|
Forum: WebSphere Message Broker (ACE) Support Posted: Fri Feb 08, 2008 1:51 am Subject: createElementAsLastChildFromBitstream throws no exception |
Hi,
Ich have the following Java Problem:
I use method createElementAsLastChildFromBitstream from MbElement to parse a byte array.
Works very nice, rather too nice. Even if the byte array conten ... |
Topic: unable to read workbench |
christian witschel
Replies: 7 Views: 49157
|
Forum: IBM MQ Telemetry / Low Latency Messaging / Everyplace Posted: Fri Oct 19, 2007 12:45 am Subject: unable to read workbench |
Thank god for this thread.
I had the same problem and deleting / renaming the .metadata folder fixed the problem. Now the MQ Explorer starts fine again. |
Topic: Is Java static variables shared across message flow? |
christian witschel
Replies: 13 Views: 11953
|
Forum: WebSphere Message Broker (ACE) Support Posted: Wed Sep 19, 2007 4:55 am Subject: Is Java static variables shared across message flow? |
Or mayby because IBM does not tell anybody that the banana just turned a little more from green to yellow. I hate support packs that add stuff that should be already in the main product.
But IA91 s ... |
Topic: how to set /MQRFH2/jms/Rto correctly in Java |
christian witschel
Replies: 4 Views: 5305
|
Forum: WebSphere Message Broker (ACE) Support Posted: Mon Sep 17, 2007 1:09 am Subject: how to set /MQRFH2/jms/Rto correctly in Java |
Hi,
i found the solution:
refOutput.getFirstElementByPath("/MQRFH2/jms").createElementAsLastChild(MbElement.TYPE_NAME, "Rto", "some queue");
it has to be type Mb ... |
Topic: variable length message |
christian witschel
Replies: 8 Views: 5468
|
Forum: WebSphere Message Broker (ACE) Support Posted: Sun Sep 16, 2007 4:44 am Subject: variable length message |
let me guess you are trying to parse / create SAP Struktures?
Because that is typical SAP behaviour to have the strukture name at the beginning and then the values. |
Topic: how to set /MQRFH2/jms/Rto correctly in Java |
christian witschel
Replies: 4 Views: 5305
|
Forum: WebSphere Message Broker (ACE) Support Posted: Sun Sep 16, 2007 4:40 am Subject: how to set /MQRFH2/jms/Rto correctly in Java |
Thanks, I changed the title and my description accordingly. |