こんにちは、URL からデータインポートを作成しようとしています
この URL の下に URL http://domain.loc/path があり、xml を動的に生成しました
今、私はこのようなデータインポートを持っています
<dataConfig>
<dataSource type="HttpDataSource" />
<document>
<entity name="pages"
pk="uid"
url="http://domain.loc/?no_cache=1&type=9999"
processor="XPathEntityProcessor"
forEach="/items"
transformer="DateFormatTransformer">
<field column="uid" xpath="/items/item/uid" indexed="true" stored="true" />
<field column="name" xpath="/items/item/title" indexed="true" stored="true" />
</entity>
</document>
この URL の下の xml は次のようになります
<?xml version="1.0" encoding="UTF-8"?>
<items>
<item>
<uid>1</uid>
<title>page 1</title>
</item>
<item>
<uid>2</uid>
<title>page 2.</title>
</item>
</items>
Dataimport は機能しますが、インデックスを作成しているドキュメントが 0 であり、その理由がわかりません