Hi All,

I am trying to index the fileds from the xml files, here is the
configuration that I am using.


db-data-config.xml

<dataConfig>
    <dataSource type="FileDataSource" name ="xmlindex"/>
    <document name="products">
     <entity name="xmlfile" processor="FileListEntityProcessor"
fileName="c:\test\ipod_other.xml"  recursive="true" rootEntity="false"
dataSource="null" baseDir="${dataimporter.request.xmlDataDir}">
     <entity name="data" processor="XPathEntityProcessor" forEach="/record |
/the/record/xpath"  url="${xmlfile.fileAbsolutePath}">
            <field column="manu"
name="manu"/>

     </entity>
        </entity>
       </document>
</dataConfig>

Schema.xml has the field "manu"

The input xml file used to import the field is

<doc>
  <field name="id">F8V7067-APL-KIT</field>
  <field name="name">Belkin Mobile Power Cord for iPod w/ Dock</field>
  <field name="manu">Belkin</field>
  <field name="cat">electronics</field>
  <field name="cat">connector</field>
  <field name="features">car power adapter, white</field>
  <field name="weight">4</field>
  <field name="price">19.95</field>
  <field name="popularity">1</field>
  <field name="inStock">false</field>
</doc>


doing the full-import this is the response I am getting

- <lst name="statusMessages">
  <str name="Total Requests made to DataSource">0</str>
  <str name="Total Rows Fetched">0</str>
  <str name="Total Documents Skipped">0</str>
  <str name="Full Dump Started">2009-05-15 11:58:00</str>
  <str name="">Indexing completed. Added/Updated: 0 documents. Deleted 0
documents.</str>
  <str name="Committed">2009-05-15 11:58:00</str>
  <str name="Optimized">2009-05-15 11:58:00</str>
  <str name="Time taken">0:0:0.172</str>
  </lst>
  <str name="WARNING">This response format is experimental. It is likely to
change in the future.</str>
  </response>


Do I missing anything here or is there any format on the input xml,?? please
help resolving this.

Thanks and regards,
Jay

Reply via email to