Author |
Message |
Topic: BIP4512S: java.lang.NoClassDefFoundError - /tmp FULL |
warrenpage
Replies: 1 Views: 5428
|
Forum: WebSphere Message Broker (ACE) Support Posted: Thu Sep 06, 2007 4:21 am Subject: BIP4512S: java.lang.NoClassDefFoundError - /tmp FULL |
When the /tmp file is full under Broker 6.0.0.5 you can see the following errors when execution groups start up
BIP4512S: java.lang.NoClassDefFoundError: com/ibm/logging/ConsoleHandler was thrown ... |
Topic: Windows 2003 Server SP1 - RPC Server unavailable |
warrenpage
Replies: 1 Views: 5018
|
Forum: General IBM MQ Support Posted: Wed Jul 04, 2007 4:54 pm Subject: Windows 2003 Server SP1 - RPC Server unavailable |
Just posting the solution we found for a problem accessing Queue Managers via MQExplorer from a Windows domain account running on Windows 2003 SP1. All was fine until SP1 was applied and then we were ... |
Topic: Anyone have MQ issues with Global Mirror or Global Copy |
warrenpage
Replies: 0 Views: 2714
|
Forum: General Discussion Posted: Tue Jan 09, 2007 7:49 pm Subject: Anyone have MQ issues with Global Mirror or Global Copy |
We have recently seen issues with MQ in an environment where our Disaster Recovery is acheived using a Global Copy/Global Mirror setup. What happens is that if Global Mirror cant take a consistency g ... |
Topic: ccsid |
warrenpage
Replies: 6 Views: 4339
|
Forum: WebSphere Message Broker (ACE) Support Posted: Fri Dec 12, 2003 2:36 pm Subject: ccsid |
yeah i dont think it converts to unicode I think it converts to the local CCSID (typically 819/1208 or 437 on AIX/Windows boxes)
If you send in an invalid unicode char it will not convert that cha ... |
Topic: Anyone have an X12 parser? |
warrenpage
Replies: 6 Views: 5291
|
Forum: WebSphere Message Broker (ACE) Support Posted: Tue Aug 19, 2003 6:25 pm Subject: ??? |
Um Simon that is what the KPC does. Why dont you give me a call? |
Topic: wmqi and ansi x12 processing |
warrenpage
Replies: 2 Views: 3021
|
Forum: WebSphere Message Broker (ACE) Support Posted: Tue Jul 08, 2003 11:26 am Subject: wmqi and ansi x12 processing |
I'm on a year+ long project to do just that.. It aint pretty - we chose not to use the internal WMQI stuff to do the X12 conversion as it requires a lot of setting up Message Sets etc.. which is prett ... |
Topic: Broker JVM arguments/properties |
warrenpage
Replies: 2 Views: 6961
|
Forum: WebSphere Message Broker (ACE) Support Posted: Tue Jun 17, 2003 8:42 pm Subject: Broker JVM arguments/properties |
Does anyone know how to pass arguments to the Broker JVM? For example to increase/manipulate the heap size/garbage collections/debugging info etc.
I though i remembered seeing from additional argu ... |
Topic: EBCDIC to ASCII |
warrenpage
Replies: 4 Views: 3493
|
Forum: WebSphere Message Broker (ACE) Support Posted: Tue Jun 03, 2003 8:38 pm Subject: Cant convert blobs inside WMQI |
I had the same problem. You can do conversions
1. At the input queue - if the MQFMT = MQSTR, then you can have the input converted to Ascii there.. Look at the parameters in the input node.
2. ... |
Topic: Java Plugin for WMQI |
warrenpage
Replies: 7 Views: 5439
|
Forum: WebSphere Message Broker (ACE) Support Posted: Wed May 28, 2003 3:06 pm Subject: Check that other classes needed by your plugin can be found |
Make sure that other classes/jars needed by your plugin can be found in the classes (not the plugin) directory. This can often cause a failure in loading your plugin which generates that error. |
Topic: Storing XML into a copybook field |
warrenpage
Replies: 7 Views: 6300
|
Forum: WebSphere Message Broker (ACE) Support Posted: Wed Apr 30, 2003 9:02 pm Subject: Storing XML into a copybook field |
If you have CSD3 or CSD4
You should use ASBITSTREAM function instead of BITSTREAM
DECLARE cRef REFERENCE TO InputRoot.XML."A"."B"."C";
SET <some copybook field> = CAST(ASBITSTREAM(cRe ... |
Topic: Access Global Environment Variables within a create function |
warrenpage
Replies: 2 Views: 3349
|
Forum: WebSphere Message Broker (ACE) Support Posted: Wed Apr 16, 2003 4:18 pm Subject: Pass the Environment as a reference |
Use something like
CALL Audit(Environment, 'Audit Msg');
CREATE PROCEDURE Audit (IN Environment REFERENCE, IN remarks CHAR)
BEGIN
DECLARE auditRoot REFERENCE to Environment.Audit;
... |
Topic: XML Objects |
warrenpage
Replies: 1 Views: 1755
|
Forum: WebSphere Message Broker (ACE) Support Posted: Fri Feb 21, 2003 11:38 am Subject: XML Objects |
I think you need to think through what you are asking?
1. How are you thinking WMQI would initiated?
The standard way is via a MQ message
You could write custom input node ... |
Topic: Putting XML in a MbElement in java plugin |
warrenpage
Replies: 2 Views: 5792
|
Forum: WebSphere Message Broker (ACE) Support Posted: Thu Feb 20, 2003 9:40 pm Subject: You should use BLOB but you need to convert your String |
You should use BLOB/BLOB but you need to convert your String to a Byte Array
MbElement blobdomain = newMsg.getRootElement().createElementAsLastChild("BLOB");
MbElement blobvalue = blobdomain.c ... |
Topic: IA0G XSL Transformation Node Installation on AIX |
warrenpage
Replies: 1 Views: 2134
|
Forum: WebSphere Message Broker (ACE) Support Posted: Sat Jan 25, 2003 10:27 am Subject: IA0G XSL Transformation Node Installation on AIX |
You will need to make sure that you have a XWindows session set up
including setting you DISPLAY variable correctly before running the command
i.e. logon to you AIX box using XWindows software ( ... |
Topic: Saving XML tree for later use |
warrenpage
Replies: 7 Views: 5367
|
Forum: WebSphere Message Broker (ACE) Support Posted: Thu Jan 02, 2003 5:04 pm Subject: Saving XML tree for later use |
define a table with a CLOB/BLOB column then
SAVE THE MESSAGE using
=================
PASSTHRU('INSERT INTO DB_MESSAGE_STORE
(Key,
MSG_XML_TX)
VALUES ... |