as promised I've split the extractor into PropertyExtractor and ContentExtractor.
The extractors can be configured in Domain.xml in a separate section (before event section).
I've added an example to Domain.xml that uses my demo property extractor.
There is a new ExtractorManager class that can be used to find the extractors matching a special Uri or content type. So the extractors should be callable from store context now, not only from the event driven extractor trigger.
Regards,
Daniel
<!-- Event configuration -->
<extractors>
<extractor classname="org.apache.slide.extractor.SimpleXmlExtractor" uri="/files/articles/test.xml">
<configuration>
<instruction property="title" xpath="/article/title/text()" />
<instruction property="summary" xpath="/article/summary/text()" />
</configuration>
</extractor>
</extractors>
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
