Author |
Message |
Topic: ESQL error replaced by Java resource bundle error |
gregop
Replies: 5 Views: 9453
|
Forum: WebSphere Message Broker (ACE) Support Posted: Wed Feb 06, 2013 5:33 am Subject: ESQL error replaced by Java resource bundle error |
My lack of java knowledge exposed. That explains the re-entry into the JCN. Thank you.
I don't understand why the rethrow has lost the underlying problem and is delivering resource bundle pr ... |
Topic: ESQL error replaced by Java resource bundle error |
gregop
Replies: 5 Views: 9453
|
Forum: WebSphere Message Broker (ACE) Support Posted: Wed Feb 06, 2013 4:51 am Subject: ESQL error replaced by Java resource bundle error |
Yes. The code running in my trace has only the default code generated by the toolkit.
public class PGJ_JavaCompute extends MbJavaComputeNode {
public void evaluate(MbMessageAssembly a ... |
Topic: ESQL error replaced by Java resource bundle error |
gregop
Replies: 5 Views: 9453
|
Forum: WebSphere Message Broker (ACE) Support Posted: Wed Feb 06, 2013 3:29 am Subject: ESQL error replaced by Java resource bundle error |
A odd problem is occurring here when a JCN is routed to compute node, and the compute node ends with an exception. The JCN appears to be re-entered and issues a 'Resource Bundle error' losing the real ... |
Topic: Getting message to ROLLBACK after MQOutput Node in WMB V6.1 |
gregop
Replies: 13 Views: 13218
|
Forum: WebSphere Message Broker (ACE) Support Posted: Mon Aug 02, 2010 5:36 am Subject: Getting message to ROLLBACK after MQOutput Node in WMB V6.1 |
Is your message non-persistent? |
Topic: Calling Oracle Procedure from MQ |
gregop
Replies: 11 Views: 9960
|
Forum: WebSphere Message Broker (ACE) Support Posted: Wed Oct 14, 2009 11:02 pm Subject: Calling Oracle Procedure from MQ |
Searching Info Center for 'call procedure' would have given you this:
http://publib.boulder.ibm.com/infocenter/wmbhelp/v6r1m0/topic/com.ibm.etools.mft.doc/ak04970_.htm |
Topic: how to send attachment using EmailOutput node? |
gregop
Replies: 8 Views: 8331
|
Forum: WebSphere Message Broker (ACE) Support Posted: Thu Sep 24, 2009 4:32 am Subject: how to send attachment using EmailOutput node? |
EmailHeader for E-mail addresses, subject...
LocalEnvironment for Attachment, SMTP.
http://publib.boulder.ibm.com/infocenter/wmbhelp/v6r1m0/topic/com.ibm.etools.mft.doc/ac37400_.htm |
Topic: how to send attachment using EmailOutput node? |
gregop
Replies: 8 Views: 8331
|
Forum: WebSphere Message Broker (ACE) Support Posted: Thu Sep 24, 2009 12:57 am Subject: how to send attachment using EmailOutput node? |
Place the attachment data into OutputLocalEnvironmentDestination.Email.Attachment.Content
Set OutputLocalEnvironmentDestination.Email.Attachment.ContentName and ContentType.
See info center: Ema ... |
Topic: SOAP REQUEST |
gregop
Replies: 1 Views: 2786
|
Forum: WebSphere Message Broker (ACE) Support Posted: Mon Sep 21, 2009 1:18 am Subject: SOAP REQUEST |
Yes, the SOAP request node will build the Envelope for you if it is not in the message. Just pass the contents of the body.
See the SOAP node samples. |
Topic: Understanding Namespace declaration |
gregop
Replies: 2 Views: 2139
|
Forum: WebSphere Message Broker (ACE) Support Posted: Thu Sep 17, 2009 11:03 pm Subject: Understanding Namespace declaration |
I think you misunderstand the concept of namespace. Namespaces are used to qualify elements and attributes with XML documents. You need to set up namesapces within esql when building XML that requires ... |
Topic: Reg CDATA |
gregop
Replies: 10 Views: 7287
|
Forum: WebSphere Message Broker (ACE) Support Posted: Wed Sep 16, 2009 6:52 am Subject: Reg CDATA |
Searching for CDATA on info centre provdes first entry of:
http://publib.boulder.ibm.com/infocenter/wmbhelp/v6r1m0/index.jsp?topic=/com.ibm.etools.mft.doc/ac67174_.htm |
Topic: Passing the Input file name |
gregop
Replies: 3 Views: 2533
|
Forum: WebSphere Message Broker (ACE) Support Posted: Wed Sep 09, 2009 12:13 am Subject: Passing the Input file name |
This sounds like the sending application is file to queue.
Are you sure that the sending application has set RFH2.usr.ident ?
Stop the flow and check the inbound message content. |
Topic: Passing table column name to esql procedure + help |
gregop
Replies: 7 Views: 6050
|
Forum: WebSphere Message Broker (ACE) Support Posted: Tue Sep 08, 2009 11:52 pm Subject: Passing table column name to esql procedure + help |
You can create your SQL statement as a string, then run as PASSTHRU. Something like:
SET sqlStatement = ('DELETE FROM TABLE1 WHERE ' || col1 || '=' || value1)
PASSTHRU(sqlStatement)
Alternat ... |
Topic: 'Invalid Character' Problem |
gregop
Replies: 7 Views: 4767
|
Forum: WebSphere Message Broker (ACE) Support Posted: Tue Sep 08, 2009 7:25 am Subject: 'Invalid Character' Problem |
I found a similar problem with 6.1.0.4. on AIX
Jul 20 15:32:24 spwebapp1 user:err|error WebSphere Broker v6104[1294396]: (WMBBRT7.Services)[3119]BIP2595E: Error casting character string 'CWF' to an ... |
Topic: Broker Log Path |
gregop
Replies: 1 Views: 2409
|
Forum: WebSphere Message Broker (ACE) Support Posted: Mon Sep 07, 2009 11:06 pm Subject: Broker Log Path |
Look in /etc/syslog.conf to see where the syslogs are sent
http://publib.boulder.ibm.com/infocenter/wmbhelp/v6r1m0/index.jsp?topic=/com.ibm.etools.mft.doc/an04230_.htm |
Topic: EmailOutput node with Multiple Attachments? |
gregop
Replies: 4 Views: 7108
|
Forum: WebSphere Message Broker (ACE) Support Posted: Thu Aug 20, 2009 10:59 pm Subject: EmailOutput node with Multiple Attachments? |
How about using the LocalEnvironment Destination instead of node properties.
Destination.Email.Attachment[].Content |