| Version 1 (modified by smartp@…, 17 months ago) (diff) |
|---|
V1.0.0 MUA Batch Import Issues
In version 1.0.0 of the MUA, there is an issue with the default configuration file that imports old log files. More specifically, in the configuration file:
Linux - /opt/raptor/mua/conf/batch-event-parse-formats-system.xml
Windows - C:\Program Files\Raptor\MUA\conf\event-parse-formats-system.xml
In short, the occurrence of the value releasedAttributes should be changed to attributes, and the occurrence of the value assertionId should be changed to assertions.
In more detail, the bean:
<bean class="uk.ac.cardiff.raptor.parse.external.file.format.Header"> <property name="fieldName"> <value>releasedAttributes</value> </property> <property name="fieldNo"> <value>10</value> </property> <property name="fieldType"> <value>STRINGLIST</value> </property> <property name="listDelimeter"> <value>,</value> </property> </bean>
Should change to:
<bean class="uk.ac.cardiff.raptor.parse.external.file.format.Header"> <property name="fieldName"> <value>attributes</value> </property> <property name="fieldNo"> <value>10</value> </property> <property name="fieldType"> <value>STRINGLIST</value> </property> <property name="listDelimeter"> <value>,</value> </property> </bean>
And the bean:
<bean class="uk.ac.cardiff.raptor.parse.external.file.format.Header"> <property name="fieldName"> <value>assertionId</value> </property> <property name="fieldNo"> <value>12</value> </property> <property name="fieldType"> <value>STRINGLIST</value> </property> <property name="listDelimeter"> <value>,</value> </property> </bean>
Should be changed to:
<bean class="uk.ac.cardiff.raptor.parse.external.file.format.Header">
<property name="fieldName">
<value>assertions</value>
</property> <property name="fieldNo">
<value>12</value>
</property> <property name="fieldType">
<value>STRINGLIST</value>
</property> <property name="listDelimeter">
<value>,</value>
</property>
</bean> }}}
This will be automatically fixed in the next version of the MUA.
