Search found 11 matches

by naveend
Thu Nov 13, 2008 2:46 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Read XML from MQ
Replies: 8
Views: 6466

I had been able to dump the message from the MQ into a SEQ file and then process it thru the XML input stage. The issue is, when I feed the message from MQ into the XML stage, I am not getting any output. I checked the DTD and the xpaths and it looks good. I would appreciate any new suggestions.
by naveend
Mon Nov 10, 2008 12:28 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Read XML from MQ
Replies: 8
Views: 6466

I am getting the whole message in one column. I created another job to move the message to the XML input stage and put the result into a SEQ file. MQ==>XMLInput==>SEQ I coded XPATH for the clientTransactionName and am not getting any output from the XML stage. It looks like the XML stage is not reco...
by naveend
Fri Nov 07, 2008 10:35 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Read XML from MQ
Replies: 8
Views: 6466

I am using the XML Input after the MQ. Here is how my job is:

MQ==>XML INPUT==>XFM==>XML OUTPUT (multiple)
by naveend
Fri Nov 07, 2008 10:05 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Read XML from MQ
Replies: 8
Views: 6466

Read XML from MQ

I am trying to develop a job to read XML from MQ. What I want to do is read the message from the Q and parse the header of the XML and validate the type of transaction it is, and based on the value, pass it to an XML output stage and write each XML to a separate file. When I move the message to the ...
by naveend
Tue Jul 15, 2008 9:51 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Parse Repeating XML Tags
Replies: 2
Views: 1821

Parse Repeating XML Tags

I am getting input XML in the format below. I need to pull the value in the tag <name> and create 1 row with 7 columns (populated by the different values in the <name> tag). Since the tag name <EObjCdProdTp> is the same for all the blocks, I am getting 7 rows and 1 column. Is there a way to do this?...
by naveend
Tue Jul 01, 2008 4:04 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Split XML file based on an input field
Replies: 11
Views: 4009

Thanks Ernie. I ran the job in version 7.5 and it works just fine. I wish someone knew the patch number.
by naveend
Thu Jun 26, 2008 5:11 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Split XML file based on an input field
Replies: 11
Views: 4009

:( I am still looking for help on this topic.
by naveend
Fri Jun 13, 2008 4:34 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Split XML file based on an input field
Replies: 11
Views: 4009

Ernie, Here is the XML: <?xml version="1.0"?> <!DOCTYPE TCRMService SYSTEM "tCRMResponse.dtd"> <TCRMService> <ResponseControl> <ResultCode>SUCCESS</ResultCode> <ServiceTime>50</ServiceTime> <DWLControl> <requesterLanguage>100</requesterLanguage> <requesterName>Susan 000107564</re...
by naveend
Fri Jun 13, 2008 10:41 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Split XML file based on an input field
Replies: 11
Views: 4009

The closing tab is at the end of the XML details. The last two tabs are </TxResponse>
</TCRMService>. I hope this is what you are asking about.
by naveend
Fri Jun 13, 2008 7:21 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Split XML file based on an input field
Replies: 11
Views: 4009

Ernie, The response type is at the top of the structure, but not the root. And yes, it does tell what the rest of the structure will be. Here is how it looks: <?xml version="1.0"?> <!DOCTYPE TCRMService SYSTEM "tCRMResponse.dtd"> <TCRMService> <ResponseControl> <ResultCode>SUCCES...
by naveend
Thu Jun 12, 2008 3:53 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Split XML file based on an input field
Replies: 11
Views: 4009

Split XML file based on an input field

I am getting multiple XML responses for different data elements like (Business Units, Country codes, currency codes) from MDM-WCC in the same MQ. I need to get the message and based on <response type> field in the XML, move the message content to the element specific XML file. I thought I could use ...