× The internal search function is temporarily non-functional. The current search engine is no longer viable and we are researching alternatives.
As a stop gap measure, we are using Google's custom search engine service.
If you know of an easy to use, open source, search engine ... please contact support@midrange.com.




I am new to the XML-INTO process and I am trying to read an xml document
into a data-structure array and I am only getting the first item. Any
help would be appreciated.

Xml file.
<SecSvyWceDataSet>
<Product>
<Upc>005150000286</Upc>
<Price>126</Price>
<Price_Type>R</Price_Type>
</Product>
<Product>
<Upc>005150076426</Upc>
<Price>126</Price>
<Price_Type>R</Price_Type>
</Product>
<Product>
<Upc>005150076080</Upc>
<Price>126</Price>
<Price_Type>R</Price_Type>
</Product>
<Product>
<Upc>005150076050</Upc>
<Price>126</Price>
<Price_Type>R</Price_Type>
</Product>
</SecSvyWceDataSet>

Program.
D Product DS Occurs(99)
D Upc 15A
D Price 6A
D Price_Type 1A

D XML_Input S 256A Varying

/FREE
XML_Input = 'test20071005.xml';

XML-INTO Product %XML(XML_Input: 'case=any ' +
'path=SecSvyWceDataSet/Product ' +
'allowmissing=yes ' +
'doc=file ');

*Inlr = *On;
/END-FREE

When this program runs Products(1) has values for upc, price, and
price_type but array elements 2 through 15 are empty.
Thanks,

Shannon




As an Amazon Associate we earn from qualifying purchases.

This thread ...

Follow-Ups:

Follow On AppleNews
Return to Archive home page | Return to MIDRANGE.COM home page

This mailing list archive is Copyright 1997-2024 by midrange.com and David Gibbs as a compilation work. Use of the archive is restricted to research of a business or technical nature. Any other uses are prohibited. Full details are available on our policy page. If you have questions about this, please contact [javascript protected email address].

Operating expenses for this site are earned using the Amazon Associate program and Google Adsense.