Author |
Message |
Topic: Getting started with IBM DataPower. |
Kazim_Baig
Replies: 2 Views: 21502
|
Forum: WebSphere DataPower Posted: Thu Jan 19, 2017 7:54 pm Subject: Getting started with IBM DataPower. |
Hi All,
I have got a sound knowledge on IBM MQ and IIB. But now I want to learn DataPower and should start working on it. I have hardly got only one week to do that. I have gone through the basic ... |
Topic: Sending multiple messages to SOAP Request node. |
Kazim_Baig
Replies: 3 Views: 4939
|
Forum: WebSphere Message Broker (ACE) Support Posted: Tue Jan 10, 2017 9:55 pm Subject: Sending multiple messages to SOAP Request node. |
PROPAGATE TO TERMINAL 'out' FINALIZE NONE;
The above statement in a loop did the job.
Thanks all. |
Topic: Sending multiple messages to SOAP Request node. |
Kazim_Baig
Replies: 3 Views: 4939
|
Forum: WebSphere Message Broker (ACE) Support Posted: Mon Jan 09, 2017 4:23 am Subject: Sending multiple messages to SOAP Request node. |
Hi All,
I have one compute node where in I'm retrieving certain values from DB and storing them in an array. There might n number of items in that array. Now I have to send each array as a differ ... |
Topic: How to remove Leading Zeros |
Kazim_Baig
Replies: 9 Views: 16964
|
Forum: WebSphere Message Broker (ACE) Support Posted: Wed Nov 02, 2016 12:39 am Subject: How to remove Leading Zeros |
I have made use of IF Else condition like:
IF InputRoot.*.* = 0.00 Then
SET OutputRoot.XMLNSC.Value.Amount = 0.00;
Else
SET OutputRoot.XMLNSC.Value.Amount= TRIM(LEADING '0' FROM InputRoo ... |
Topic: How to remove Leading Zeros |
Kazim_Baig
Replies: 9 Views: 16964
|
Forum: WebSphere Message Broker (ACE) Support Posted: Tue Nov 01, 2016 11:21 pm Subject: How to remove Leading Zeros |
[quote="akir"][quote="satya2481"] implemented it in ESQL?[/quote]
I think this is how it is done!!
[code]-- In Customer Account Number leading zeroes are removed and set in E ... |
Topic: Transformation of a variable. |
Kazim_Baig
Replies: 1 Views: 10413
|
Forum: IBM MQ API Support Posted: Fri Oct 21, 2016 3:34 am Subject: Transformation of a variable. |
Hi All,
I have a requirement. I have an input JSON Request as follows
{
"correlationID":"11",
"policyNumber":"11"
}
Now i need to transform it to belo ... |
Topic: Reading values from an array. |
Kazim_Baig
Replies: 2 Views: 3800
|
Forum: WebSphere Message Broker (ACE) Support Posted: Tue Oct 18, 2016 5:06 am Subject: Reading values from an array. |
Hi All,
Assume that I have an array which 'x' number of items. Now my requirement is, in an If else statement, I will read the items present in that array and based on the values I will proceed fur ... |
Topic: Parse DFDL in ESQL |
Kazim_Baig
Replies: 16 Views: 36901
|
Forum: WebSphere Message Broker (ACE) Support Posted: Thu Sep 01, 2016 10:34 pm Subject: DFDL to DFDL parsing using esql. |
Hi All,
My requirement is also pretty much same. But the difference is I'm getting a flat file message from HTTP input node and I'm using a DFDL to parse it. Now I need to parse it in to some ot ... |
Topic: ESQL Coding tips |
Kazim_Baig
Replies: 3 Views: 4176
|
Forum: WebSphere Message Broker (ACE) Support Posted: Tue Aug 16, 2016 3:13 am Subject: ESQL Coding tips |
Hi All,
I need a small suggestion, my input is a XML message and I'am converting that to a Flat file using DFDL. My question is say suppose on of the field in the DFDL is of length 20 and the field ... |
Topic: How to configure Hermes JMS in SOAP UI to connect IBM MQ |
Kazim_Baig
Replies: 3 Views: 9200
|
Forum: IBM MQ Java / JMS Posted: Mon Jul 04, 2016 9:55 pm Subject: How to configure Hermes JMS in SOAP UI to connect IBM MQ |
I have made all the required configuration and I have executed these commands as well
display authinfo(SYSTEM.DEFAULT.AUTHINFO.IDPWOS)
ALTER AUTHINFO(SYSTEM.DEFAULT.AUTHINFO.IDPWOS) AUTHTYPE(IDPWOS) ... |
Topic: How to configure Hermes JMS in SOAP UI to connect IBM MQ |
Kazim_Baig
Replies: 3 Views: 9200
|
Forum: IBM MQ Java / JMS Posted: Mon Jul 04, 2016 1:53 am Subject: How to configure Hermes JMS in SOAP UI to connect IBM MQ |
Hi All,
My task is to send a message from HERMES JMS which is present in the SOAP UI to a queue created in a queue manager at IBM MQ end. Is there any link which would give me the steps to achieve ... |
Topic: DFDL Serialization error |
Kazim_Baig
Replies: 6 Views: 6136
|
Forum: WebSphere Message Broker (ACE) Support Posted: Wed May 04, 2016 12:49 am Subject: DFDL Serialization error |
Hey timber!!
http://www.mqseries.net/phpBB2/viewtopic.php?p=406339#406339
one more query.. |
Topic: Grouping in DFDL. |
Kazim_Baig
Replies: 2 Views: 3196
|
Forum: WebSphere Message Broker (ACE) Support Posted: Wed May 04, 2016 12:46 am Subject: Grouping in DFDL. |
Hi,
I'm new to DFDL and I'm working on fixed length format. In my requirement, certain elements will be repeated up to 10 times. For that I have created a group. Now how to add multiple occurrences f ... |
Topic: DFDL Serialization error |
Kazim_Baig
Replies: 6 Views: 6136
|
Forum: WebSphere Message Broker (ACE) Support Posted: Tue May 03, 2016 8:22 pm Subject: DFDL Serialization error |
Hi All,
Issue resolved. I had kept all the message models in a shared library. Now I have kept the message model in the application it self. Its working now. Must be some issue with the name space. ... |
Topic: Propagate DFDL message in ESQL : Root element does not exist |
Kazim_Baig
Replies: 13 Views: 24215
|
Forum: WebSphere Message Broker (ACE) Support Posted: Mon May 02, 2016 10:42 pm Subject: Propagate DFDL message in ESQL : Root element does not exist |
Hi All,
Thanks for your posts. |