Author |
Message |
Topic: MQGET node related query |
christopher j
Replies: 3 Views: 3342
|
Forum: WebSphere Message Broker (ACE) Support Posted: Thu Jul 07, 2016 11:52 am Subject: MQGET node related query |
Did you read about MQInput node? |
Topic: Need help regarding Attribute value using esql |
christopher j
Replies: 14 Views: 12024
|
Forum: WebSphere Message Broker (ACE) Support Posted: Fri Apr 17, 2015 1:30 am Subject: Need help regarding Attribute value using esql |
Have you tried ESQL select statement? |
Topic: Destination list question |
christopher j
Replies: 2 Views: 1965
|
Forum: WebSphere Message Broker (ACE) Support Posted: Thu Apr 16, 2015 6:00 am Subject: Destination list question |
Did you try printing your Environment.Variables.NameArr in user trace ?
I believe your code should be ,
SET OutputLocalEnvironment.Destination.MQ.DestinationData[I].queueName= Environmen ... |
Topic: Split XML request into Multiple XML request using esql |
christopher j
Replies: 4 Views: 5823
|
Forum: WebSphere Message Broker (ACE) Support Posted: Thu Apr 09, 2015 1:11 am Subject: Split XML request into Multiple XML request using esql |
create/modify 'outputroot' for each of the split of your incoming xml message and use 'Propagate' Statement. |
Topic: determine last record in the Queue based on input message |
christopher j
Replies: 17 Views: 13832
|
Forum: WebSphere Message Broker (ACE) Support Posted: Thu Dec 05, 2013 2:43 am Subject: determine last record in the Queue based on input message |
Read the messages one by one and store it in a shared variable untill you read the 'Last Record Indicator' message.
Once you received the 'Last Record Indicator' message, propagate the shared var ... |
Topic: Broker restart after Cert installation in wmb? |
christopher j
Replies: 4 Views: 2614
|
Forum: WebSphere Message Broker (ACE) Support Posted: Thu Jan 10, 2013 8:39 pm Subject: Broker restart after Cert installation in wmb? |
Hi
I am newbie to certificate installation in WMB.I successfully installed the cert in WMB cacert.This cert is to make an https call to external service using HTTPRequest node.Once it is installed sh ... |
Topic: looking for MB DEVOLOPER POSTION |
christopher j
Replies: 2 Views: 7140
|
Forum: Job Seekers Posted: Sun Nov 20, 2011 11:03 pm Subject: looking for MB DEVOLOPER POSTION |
Christopher,4.5-Chennai (jchris242005@gmail.com)
Could you forward the details about the post? |
Topic: converiting special characters using ESQL and CCSID |
christopher j
Replies: 8 Views: 11547
|
Forum: WebSphere Message Broker (ACE) Support Posted: Wed Mar 02, 2011 1:03 pm Subject: converiting special characters using ESQL and CCSID |
I used below esql.But it didnt work
SET Formattedvalue = REPLACE(Formattedvalue,'¼','a'); |
Topic: converiting special characters using ESQL and CCSID |
christopher j
Replies: 8 Views: 11547
|
Forum: WebSphere Message Broker (ACE) Support Posted: Wed Mar 02, 2011 12:57 pm Subject: converiting special characters using ESQL and CCSID |
Hi,
¼,¾ are some of the special characters comes as input to my application.I need to convert them as a ,b .CCSID for QM is 437.I tried CCSID 437 and 1208.But ESQL is not recognising the special ch ... |
Topic: Java call from xsl throws compilation error in WMB |
christopher j
Replies: 1 Views: 2357
|
Forum: WebSphere Message Broker (ACE) Support Posted: Thu Feb 17, 2011 8:41 am Subject: Java call from xsl throws compilation error in WMB |
If i change the cache level to 0 then I am able to run the xsl in broker without any exception.Is there any way to achieve this without changing the cache level as cache level '0' may hit the perfor ... |
Topic: Java call from xsl throws compilation error in WMB |
christopher j
Replies: 1 Views: 2357
|
Forum: WebSphere Message Broker (ACE) Support Posted: Thu Feb 17, 2011 7:35 am Subject: Java call from xsl throws compilation error in WMB |
Hi,
Is there any limitation in WMB to use java call in the xsl?
I used the below xsl and able to run in tool kit xsl editor.When I try the same in WMB ,it throws compilation error.
<xsl:s ... |
Topic: Adding comments (<!-- -->) inside the xml by using ESQ |
christopher j
Replies: 5 Views: 8406
|
Forum: WebSphere Message Broker (ACE) Support Posted: Sun Feb 13, 2011 9:04 pm Subject: Adding comments (<!-- -->) inside the xml by using ESQ |
Hi,
,
Could you please help me to add comments inside the xml (<!-- -->) by using ESQL.
I observed that '<' got converted into '<' .Is there any way to avoid this? |
Topic: how to convert string to ASCII by using ccsid or encoding |
christopher j
Replies: 12 Views: 6129
|
Forum: WebSphere Message Broker (ACE) Support Posted: Thu Jul 08, 2010 9:51 am Subject: how to convert string to ASCII by using ccsid or encoding |
When i am casting ' ' (space) to an ascii value, ccsid-819 converts it into 20.But the actual ascii value for ' ' is 32.How to achieve that? |
Topic: how to convert string to ASCII by using ccsid or encoding |
christopher j
Replies: 12 Views: 6129
|
Forum: WebSphere Message Broker (ACE) Support Posted: Wed Jul 07, 2010 11:46 am Subject: how to convert string to ASCII by using ccsid or encoding |
I am trying in a below way to convert CHARACTER into ASCII
DECLARE rec CHARACTER;
SET rec='1811 ';
SET Environment.Variables.blobREC=CAST(rec as BLOB CCSID 819)
But i am not sure whether thi ... |
Topic: how to convert string to ASCII by using ccsid or encoding |
christopher j
Replies: 12 Views: 6129
|
Forum: WebSphere Message Broker (ACE) Support Posted: Tue Jul 06, 2010 10:20 am Subject: how to convert string to ASCII by using ccsid or encoding |
hi
could you please help me to convert string(contains numbers ad alphabets) to ASCII by using ccsid or encoding |