Author |
Message |
Topic: How to delete repeatable tags in XML |
Radhikab
Replies: 2 Views: 3815
|
Forum: WebSphere Message Broker (ACE) Support Posted: Fri Mar 02, 2012 1:05 am Subject: How to delete repeatable tags in XML |
Hi,
I have a requirement like " Few tags in xml message are repeatable tags. I have to create subsetmessage for each repeatable tag. while creating output message for 1st repeatable tag i.e, a ... |
Topic: How can I ignore 1st record in a file |
Radhikab
Replies: 22 Views: 13152
|
Forum: WebSphere Message Broker (ACE) Support Posted: Mon Nov 28, 2011 2:21 am Subject: How can I ignore 1st record in a file |
Thanks a lot for all your responses.
Created the message set with complex type as Header. When I tested for the first time, the flow was running on two execution groups. Deleted it in one EG and te ... |
Topic: How can I ignore 1st record in a file |
Radhikab
Replies: 22 Views: 13152
|
Forum: WebSphere Message Broker (ACE) Support Posted: Thu Nov 17, 2011 3:33 am Subject: How can I ignore 1st record in a file |
Here is the message set
<?xml version="1.0" encoding="UTF-8"?>
<xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<xsd:complex ... |
Topic: How can I ignore 1st record in a file |
Radhikab
Replies: 22 Views: 13152
|
Forum: WebSphere Message Broker (ACE) Support Posted: Thu Nov 17, 2011 2:53 am Subject: How can I ignore 1st record in a file |
Hi Amit,
Thanks for suggestion.. Could you please paste the complete code?
Iam using SET A= TRIM('"' FROM TRIM("InputBody"."Record"[IN_I]."A"));
SET B= TRIM('& ... |
Topic: How can I ignore 1st record in a file |
Radhikab
Replies: 22 Views: 13152
|
Forum: WebSphere Message Broker (ACE) Support Posted: Thu Nov 17, 2011 2:30 am Subject: How can I ignore 1st record in a file |
Hi Kimbert,
Can you please check my code and let me know whether it is correct? |
Topic: How can I ignore 1st record in a file |
Radhikab
Replies: 22 Views: 13152
|
Forum: WebSphere Message Broker (ACE) Support Posted: Thu Nov 17, 2011 2:01 am Subject: How can I ignore 1st record in a file |
Hi Ajit,
I tried like this
IF IN_I > 1 then
CALL INBOUND();
end if;
set IN_I = IN_I+1;
Then also it is creating message for 1st record |
Topic: How can I ignore 1st record in a file |
Radhikab
Replies: 22 Views: 13152
|
Forum: WebSphere Message Broker (ACE) Support Posted: Thu Nov 17, 2011 1:42 am Subject: How can I ignore 1st record in a file |
as per the requirement it has to ignore 1st record. but it is creating message for header also.
We don't have debugger to trace the message. we are using wmb 6.1 |
Topic: How can I ignore 1st record in a file |
Radhikab
Replies: 22 Views: 13152
|
Forum: WebSphere Message Broker (ACE) Support Posted: Thu Nov 17, 2011 1:32 am Subject: How can I ignore 1st record in a file |
Created message set with header and record. min occurs and max occurs is 1 for header and for records it is 0 to -1.
and in my esql code am using the code which was posted in my question.
messag ... |
Topic: How can I ignore 1st record in a file |
Radhikab
Replies: 22 Views: 13152
|
Forum: WebSphere Message Broker (ACE) Support Posted: Thu Nov 17, 2011 12:57 am Subject: How can I ignore 1st record in a file |
Hi,
I was instructed to use mqinput node instead of fileinput node. |
Topic: How can I ignore 1st record in a file |
Radhikab
Replies: 22 Views: 13152
|
Forum: WebSphere Message Broker (ACE) Support Posted: Thu Nov 17, 2011 12:50 am Subject: How can I ignore 1st record in a file |
Hi Saurabh,
Thanks for the response
no, my code is not working..
Also,I tried creating one more complextype as header with min and max occurs as '1' and declared all 10 fields in it. Still it is ... |
Topic: How can I ignore 1st record in a file |
Radhikab
Replies: 22 Views: 13152
|
Forum: WebSphere Message Broker (ACE) Support Posted: Wed Nov 16, 2011 9:50 pm Subject: How can I ignore 1st record in a file |
Hi,
We will be receiving a standard format from each source in the form of semi-colon delimited CSV files and we have to convert it to XML message by taking each single record ina file.
Each recor ... |