Problem with thing-types.xml

I have developed a binding.

It works prefect in Windows10 IDE
It build without errors

But when i move it to my RPI3 OH2.4 Stable i receive this error.

2019-01-21 23:15:26.554 [WARN ] [ig.xml.osgi.XmlDocumentBundleTracker] - The XML document '/ESH-INF/thing/thing-types.xml' in module 'org.openhab.binding.smhi' could not be parsed:  : ParseError at [row,col]:[201,22]
Message: /var/lib/openhab2/cache/org.eclipse.osgi/314/0/bundleFile :  : ParseError at [row,col]:[201,22]
Message: /var/lib/openhab2/cache/org.eclipse.osgi/314/0/bundleFile
---- Debugging information ----
message             :  : ParseError at [row,col]:[201,22]
Message: /var/lib/openhab2/cache/org.eclipse.osgi/314/0/bundleFile
cause-exception     : com.thoughtworks.xstream.io.StreamException
cause-message       :  : ParseError at [row,col]:[201,22]
Message: /var/lib/openhab2/cache/org.eclipse.osgi/314/0/bundleFile
class               : org.eclipse.smarthome.config.xml.util.NodeValue
required-type       : org.eclipse.smarthome.config.xml.util.NodeValue
converter-type      : org.eclipse.smarthome.config.xml.util.NodeValueConverter
path                : /thing-descriptions/channel-type[13]/item-type
line number         : 201
class[1]            : java.util.ArrayList
converter-type[1]   : com.thoughtworks.xstream.converters.collections.CollectionConverter
class[2]            : org.eclipse.smarthome.core.thing.xml.internal.ChannelTypeXmlResult
converter-type[2]   : org.eclipse.smarthome.core.thing.xml.internal.ChannelTypeConverter
class[3]            : org.eclipse.smarthome.core.thing.xml.internal.ThingDescriptionList
converter-type[3]   : org.eclipse.smarthome.core.thing.xml.internal.ThingDescriptionConverter
version             : 1.4.7

can’t find any errors in thing-types-xml

<?xml version="1.0" encoding="UTF-8"?>
<thing:thing-descriptions bindingId="smhi"
	xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
	xmlns:thing="http://eclipse.org/smarthome/schemas/thing-description/v1.0.0"
	xsi:schemaLocation="http://eclipse.org/smarthome/schemas/thing-description/v1.0.0 http://eclipse.org/smarthome/schemas/thing-description-1.0.0.xsd">
	<thing-type id="weather-and-forecast">
		<label>SMHI Weather And Forecast</label>
		<description>Provides current weather and forecast data from the SMHI API.</description>

		<channel-groups>
			<channel-group typeId="weather" id="current"></channel-group>
			<channel-group id="forecastTomorrow" typeId="dailyForecast">
				<label>Tomorrows Forecast</label>
				<description>This is the weather forecast for tomorrow.</description>
			</channel-group>
			<channel-group id="forecastDay2" typeId="dailyForecast">
				<label>2 Day Forecast</label>
				<description>This is the weather forecast in two days.</description>
			</channel-group>
			<channel-group id="forecastDay3" typeId="dailyForecast">
				<label>3 Day Forecast</label>
				<description>This is the weather forecast in three days.</description>
			</channel-group>
		</channel-groups>

		<config-description>
			<parameter name="weatherlocation" type="text">
					<label>Location</label>
					<description>Location of weather in lat,lon coordinates. Defauls to Stockholm Castle</description>
					<required>true</required>
					<default>59.322665376,18.069666388</default>
			</parameter>

			<parameter name="refresh" type="text">
					<label>Refresh Interval</label>
					<description>Specifies the refresh interval in minutes.</description>
					<required>true</required>
					<default>60</default>
			</parameter>
			
		</config-description>

	</thing-type>

	<channel-group-type id="weather">
		<label>Current Weather</label>
		<channels>
			<channel id="time-stamp" typeId="time-stamp" />
			<channel id="condition" typeId="condition" />
			<channel id="condition-id" typeId="Wsymb2" />
			<channel id="temperature" typeId="system.outdoor-temperature" />
			<channel id="min-temperature" typeId="min-temperature" />
			<channel id="max-temperature" typeId="max-temperature" />
			<channel id="pressure" typeId="msl" />
			<channel id="humidity" typeId="system.atmospheric-humidity" />
			<channel id="wind-speed" typeId="ws" />
			<channel id="wind-direction" typeId="wd" />
			<channel id="wind-gust" typeId="gust" />
			<channel id="thunderstorm" typeId="tstm" />
			<channel id="cloud-cover" typeId="tcc_mean" />
			<channel id="cloud-over-low" typeId="lcc_mean" />
			<channel id="cloud-cover-medium" typeId="mcc_mean" />
			<channel id="cloud-cover-high" typeId="hcc_mean" />
			<channel id="visibility" typeId="vis" />
			<channel id="precipitation-cat" typeId="pcat" />
			<channel id="precipitation-mean" typeId="pmean" />
			<channel id="precipitation-median" typeId="pmedian" />
			<channel id="precipitation-min" typeId="pmin" />
			<channel id="precipitation-max" typeId="pmax" />
			<channel id="precipitation-frozen" typeId="spp" />
			
		</channels>
	</channel-group-type>

	<channel-group-type id="dailyForecast">
		<label>Daily Forecast</label>
		<description>This is the 3 day / daily weather forecast.</description>
		<channels>
			<channel id="time-stamp" typeId="daily-forecast-time-stamp" />
			<channel id="condition" typeId="forecasted-condition" />
			<channel id="condition-id" typeId="Wsymb2" />
			<channel id="temperature" typeId="forecasted-t" />
			<channel id="min-temperature" typeId="forecasted-min-temperature" />
			<channel id="max-temperature" typeId="forecasted-max-temperature" />
			<channel id="pressure" typeId="forecasted-msl" />
			<channel id="humidity" typeId="forecasted-r" />
			<channel id="wind-speed" typeId="forecasted-ws" />
			<channel id="wind-direction" typeId="forecasted-wd" />
			<channel id="wind-gust" typeId="forecasted-gust" />
			<channel id="thunderstorm" typeId="forecasted-tstm" />
			<channel id="cloud-cover" typeId="forecasted-tcc_mean" />
			<channel id="cloud-cover-low" typeId="forecasted-lcc_mean" />
			<channel id="cloud-cover-medium" typeId="forecasted-mcc_mean" />
			<channel id="cloud-cover-high" typeId="forecasted-hcc_mean" />
			<channel id="visibility" typeId="forecasted-vis" />
			<channel id="precipitation-cat" typeId="forecasted-pcat" />
			<channel id="precipitation-mean" typeId="forecasted-pmean" />
			<channel id="precipitation-median" typeId="forecasted-pmedian" />
			<channel id="precipitation-min" typeId="forecasted-pmin" />
			<channel id="precipitation-max" typeId="forecasted-pmax" />
			<channel id="precipitation-frozen" typeId="forecasted-spp" />
		</channels>
	</channel-group-type>

	<channel-type id="time-stamp">
		<item-type>DateTime</item-type>
		<label>Observation Time</label>
		<description>Time of data observation.</description>
		<category>Time</category>
		<state readOnly="true" pattern="%1$tY-%1$tm-%1$td %1$tH:%1$tM:%1$tS" />
	</channel-type>

	<channel-type id="daily-forecast-time-stamp">
		<item-type>DateTime</item-type>
		<label>Forecast Date</label>
		<description>Date of data forecasted.</description>
		<category>Time</category>
		<state readOnly="true" pattern="%1$tY-%1$tm-%1$td" />
	</channel-type>
	
	<channel-type id="condition">
		<item-type>String</item-type>
		<label>Weather Condition</label>
		<description>Current weather condition.</description>
		<category>Sun_Clouds</category>
		<state readOnly="true" />
	</channel-type>

	<channel-type id="forecasted-condition">
		<item-type>String</item-type>
		<label>Forecasted Weather Condition</label>
		<description>Forecasted weather condition.</description>
		<category>Sun_Clouds</category>
		<state readOnly="true" />
	</channel-type>

	<channel-type id="Wsymb2" advanced="true">
		<item-type>Number</item-type>
		<label>Weather Condition Id</label>
		<description>Id of the weather condition.</description>
		<state readOnly="true" />
	</channel-type>
	
	<channel-type id="forecasted-t">
		<item-type>Number:Temperature</item-type>
		<label>Forecasted Temperature</label>
		<description>Forecasted outdoor temperature.</description>
		<category>Temperature</category>
		<state readOnly="true" pattern="%.1f %unit%" />
	</channel-type>

	<channel-type id="min-temperature">
		<item-type>Number:Temperature</item-type>
		<label>Min Temperature</label>
		<description>Min outdoor temperature rest of day.</description>
		<category>Temperature</category>
		<state readOnly="true" pattern="%.1f %unit%" />
	</channel-type>

	<channel-type id="max-temperature">
		<item-type>Number:Temperature</item-type>
		<label>Max Temperature</label>
		<description>Max outdoor temperature rest of day.</description>
		<category>Temperature</category>
		<state readOnly="true" pattern="%.1f %unit%" />
	</channel-type>

	<channel-type id="forecasted-min-temperature">
		<item-type>Number:Temperature</item-type>
		<label>Forecasted Min Temperature</label>
		<description>Forecasted min outdoor temperature.</description>
		<category>Temperature</category>
		<state readOnly="true" pattern="%.1f %unit%" />
	</channel-type>

	<channel-type id="forecasted-max-temperature">
		<item-type>Number:Temperature</item-type>
		<label>Forecasted Max Temperature</label>
		<description>Forecasted max outdoor temperature.</description>
		<category>Temperature</category>
		<state readOnly="true" pattern="%.1f %unit%" />
	</channel-type>

	<channel-type id="msl">
		<item-type>Number:Pressure</item-type>
		<label>Forecasted Pressure</label>
		<description>Barometric pressure.</description>
		<category>Pressure</category>
		<state readOnly="true" pattern="%.1f %unit%" />
	</channel-type>

	<channel-type id="forecasted-msl">
		<item-type>Number:Pressure</item-type>
		<label>Forecasted Pressure</label>
		<description>Forecasted barometric pressure.</description>
		<category>Pressure</category>
		<state readOnly="true" pattern="%.1f %unit%" />
	</channel-type>

	<channel-type id="forecasted-r">
		<item-type>Number:Dimensionless</item-type>
		<label>Forecasted Humidity</label>
		<description>Forecasted atmospheric relative humidity.</description>
		<category>Humidity</category>
		<state readOnly="true" pattern="%.0f %%" />
	</channel-type>

	<channel-type id="ws">
		<item-type>Number:Speed</item-type>
		<label>Forecasted Wind Speed</label>
		<description>Forecasted wind speed.</description>
		<category>Wind</category>
		<state readOnly="true" pattern="%.1f m/s" />
	</channel-type>

	<channel-type id="forecasted-ws">
		<item-type>Number:Speed</item-type>
		<label>Forecasted Wind Speed</label>
		<description>Forecasted wind speed.</description>
		<category>Wind</category>
		<state readOnly="true" pattern="%.1f m/s" />
	</channel-type>

	<channel-type id="wd">
		<item-type>Number:Angle</item-type>
		<label>Forecasted Wind Direction</label>
		<description>Forecasted wind direction expressed as an angle.</description>
		<category>Wind</category>
		<state readOnly="true" pattern="%.0f %unit%" />
	</channel-type>

	<channel-type id="forecasted-wd">
		<item-type>Number:Angle</item-type>
		<label>Forecasted Wind Direction</label>
		<description>Forecasted wind direction expressed as an angle.</description>
		<category>Wind</category>
		<state readOnly="true" pattern="%.0f %unit%" />
	</channel-type>

	<channel-type id="gust" advanced="true">
		<item-type>Number:Speed</item-type>
		<label>Gust Speed</label>
		<description>Current gust speed.</description>
		<category>Wind</category>
		<state readOnly="true" pattern="%.1f m/s" />
	</channel-type>

	<channel-type id="forecasted-gust" advanced="true">
		<item-type>Number:Speed</item-type>
		<label>Forecasted Gust Speed</label>
		<description>Forecasted gust speed.</description>
		<category>Wind</category>
		<state readOnly="true" pattern="%.1f m/s" />
	</channel-type>

	<channel-type id="tstm" advanced="true">
		<item-type>Number:Dimensionless</item-type>
		<label>Thunder probability</label>
		<description>Thunder probability.</description>
		<category>Energy</category>
		<state readOnly="true" pattern="%.0f %%" />
	</channel-type>

	<channel-type id="forecasted-tstm" advanced="true">
		<item-type>Number:Dimensionless</item-type>
		<label>Forecasted Thunder probability</label>
		<description>Forecasted thunder probability.</description>
		<category>Energy</category>
		<state readOnly="true" pattern="%.0f %%" />
	</channel-type>

	<channel-type id="tcc_mean">
		<item-type>Number:Dimensionless</item-type>
		<label>Cloud Cover</label>
		<description>The total cloud cover. How big part of the sky is covered by clouds.</description>
		<category>Clouds</category>
		<state readOnly="true" min="0" max="100" pattern="%.1f %%" />
	</channel-type>

	<channel-type id="forecasted-tcc_mean">
		<item-type>Number:Dimensionless</item-type>
		<label>Forecasted Cloud Cover</label>
		<description>Forecasted value of total cloud cover.</description>
		<category>Clouds</category>
		<state readOnly="true" min="0" max="100" pattern="%.1f %%" />
	</channel-type>

	<channel-type id="lcc_mean" advanced="true">
		<item-type>Number:Dimensionless</item-type>
		<label>Cloud Cover Low</label>
		<description>Low cloud cover. Clouds between 0 and 2500 meters.</description>
		<category>Clouds</category>
		<state readOnly="true" min="0" max="100" pattern="%.1f %%" />
	</channel-type>

	<channel-type id="forecasted-lcc_mean" advanced="true">
		<item-type>Number:Dimensionless</item-type>
		<label>Forecasted Cloud Cover Low</label>
		<description>Forecasted low cloud cover. Clouds between 0 and 2500 meters.</description>
		<category>Clouds</category>
		<state readOnly="true" min="0" max="100" pattern="%.1f %%" />
	</channel-type>

	<channel-type id="mcc_mean" advanced="true">
		<item-type>Number:Dimensionless</item-type>
		<label>Cloud Cover Medium</label>
		<description>Medium cloud cover. Clouds between 2500 and 6000 meters.</description>
		<category>Clouds</category>
		<state readOnly="true" min="0" max="100" pattern="%.1f %%" />
	</channel-type>

	<channel-type id="forecasted-mcc_mean" advanced="true">
		<item-type>Number:Dimensionless</item-type>
		<label>Forecasted Cloud Cover Medium</label>
		<description>Forecasted medium cloud cover. Clouds between 2500 and 6000 meters.</description>
		<category>Clouds</category>
		<state readOnly="true" min="0" max="100" pattern="%.1f %%" />
	</channel-type>

	<channel-type id="hcc_mean" advanced="true">
		<item-type>Number:Dimensionless</item-type>
		<label>Cloud Cover High</label>
		<description>High cloud cover. Clouds above 6000 meters.</description>
		<category>Clouds</category>
		<state readOnly="true" min="0" max="100" pattern="%.1f %%" />
	</channel-type>

	<channel-type id="forecasted-hcc_mean" advanced="true">
		<item-type>Number:Dimensionless</item-type>
		<label>Forecasted Cloud Cover High</label>
		<description>Forecasted high cloud cover. Clouds above 6000 meters.</description>
		<category>Clouds</category>
		<state readOnly="true" min="0" max="100" pattern="%.1f %%" />
	</channel-type>

	<channel-type id="vis" advanced="true">
		<item-type>Number:Length</item-type>
		<label>Visibility</label>
		<description>Horizontal visibility.</description>
		<category>Clouds</category>
		<state readOnly="true" pattern="%d km" />
	</channel-type>

	<channel-type id="forecasted-vis" advanced="true">
		<item-type>Number:Length</item-type>
		<label>Forecasted Visibility</label>
		<description>Forecasted horizontal visibility.</description>
		<category>Clouds</category>
		<state readOnly="true" pattern="%d km" />
	</channel-type>

	<channel-type id="pcat">
		<item-type>String</item-type>
		<label>Precipitation Category</label>
		<description>Precipitation category.</description>
		<category>Rain</category>
		<state readOnly="true" />
	</channel-type>

	<channel-type id="forecasted-pcat">
		<item-type>String</item-type>
		<label>Forecasted Precipitation Category</label>
		<description>Forecasted precipitation category.</description>
		<category>Rain</category>
		<state readOnly="true" />
	</channel-type>

	<channel-type id="pmean">
		<item-type>Number:Length</item-type>
		<label>Precipitation Mean</label>
		<description>Mean precipitation intensity.</description>
		<category>Rain</category>
		<state readOnly="true" pattern="%.1f mm/h" />
	</channel-type>

	<channel-type id="forecasted-pmean">
		<item-type>Number:Length</item-type>
		<label>Forecasted Precipitation Mean</label>
		<description>Forecasted mean precipitation intensity.</description>
		<category>Rain</category>
		<state readOnly="true" pattern="%.1f mm/h" />
	</channel-type>

	<channel-type id="pmedian" advanced="true">
		<item-type>Number:Length</item-type>
		<label>Precipitation Median</label>
		<description>Median precipitation intensity.</description>
		<category>Rain</category>
		<state readOnly="true" pattern="%.1f mm/h" />
	</channel-type>

	<channel-type id="forecasted-pmedian" advanced="true">
		<item-type>Number:Length</item-type>
		<label>Forecasted Precipitation Median</label>
		<description>Forecasted median precipitation intensity.</description>
		<category>Rain</category>
		<state readOnly="true" pattern="%.1f mm/h" />
	</channel-type>
	
	<channel-type id="pmin" advanced="true">
		<item-type>Number:Length</item-type>
		<label>Precipitation Min</label>
		<description>Min precipitation intensity.</description>
		<category>Rain</category>
		<state readOnly="true" pattern="%.1f mm/h" />
	</channel-type>

	<channel-type id="forecasted-pmin" advanced="true">
		<item-type>Number:Length</item-type>
		<label>Forecasted Precipitation Min</label>
		<description>Forecasted min precipitation intensity.</description>
		<category>Rain</category>
		<state readOnly="true" pattern="%.1f mm/h" />
	</channel-type>

	<channel-type id="pmax" advanced="true">
		<item-type>Number:Length</item-type>
		<label>Precipitation Max</label>
		<description>Max precipitation intensity.</description>
		<category>Rain</category>
		<state readOnly="true" pattern="%.1f mm/h" />
	</channel-type>

	<channel-type id="forecasted-pmax" advanced="true">
		<item-type>Number:Length</item-type>
		<label>Forecasted Precipitation Max</label>
		<description>Forecasted max precipitation intensity.</description>
		<category>Rain</category>
		<state readOnly="true" pattern="%.1f mm/h" />
	</channel-type>

	<channel-type id="spp" advanced="true">
		<item-type>Number:Dimensionless</item-type>
		<label>Precipitation in frozen form</label>
		<description>Percent of precipitation in frozen form.</description>
		<category>Energy</category>
		<state readOnly="true" pattern="%.0f %%" />
	</channel-type>

	<channel-type id="forecasted-spp" advanced="true">
		<item-type>Number:Dimensionless</item-type>
		<label>Forecasted Precipitation in frozen form</label>
		<description>Forecasted percent of precipitation in frozen form.</description>
		<category>Energy</category>
		<state readOnly="true" pattern="%.0f %%" />
	</channel-type>
	
</thing:thing-descriptions>	

/Mike

Perhaps this is one of those unix/windows newline issues, or other editor character issue.

Can not find any Windows characters.
Have just used eclipse and notepad++

/Mike

Just guessing: could it be the Dimensionless? If you remove it. Does that make a difference?

Will try

Removed them new error

2019-01-22 00:27:47.092 [WARN ] [ig.xml.osgi.XmlDocumentBundleTracker] - The XML document '/ESH-INF/thing/thing-types.xml' in module 'org.openhab.binding.smhi' could not be parsed:  : ParseError at [row,col]:[426,16]
Message: /var/lib/openhab2/cache/org.eclipse.osgi/316/0/bundleFile :  : ParseError at [row,col]:[426,16]
Message: /var/lib/openhab2/cache/org.eclipse.osgi/316/0/bundleFile
---- Debugging information ----
message             :  : ParseError at [row,col]:[426,16]
Message: /var/lib/openhab2/cache/org.eclipse.osgi/316/0/bundleFile
cause-exception     : com.thoughtworks.xstream.io.StreamException
cause-message       :  : ParseError at [row,col]:[426,16]
Message: /var/lib/openhab2/cache/org.eclipse.osgi/316/0/bundleFile
class               : org.eclipse.smarthome.config.xml.util.NodeValue
required-type       : org.eclipse.smarthome.config.xml.util.NodeValue
converter-type      : org.eclipse.smarthome.config.xml.util.NodeValueConverter
path                : /thing-descriptions/channel-type[41]/label
line number         : 426
class[1]            : java.util.ArrayList
converter-type[1]   : com.thoughtworks.xstream.converters.collections.CollectionConverter
class[2]            : org.eclipse.smarthome.core.thing.xml.internal.ChannelTypeXmlResult
converter-type[2]   : org.eclipse.smarthome.core.thing.xml.internal.ChannelTypeConverter
class[3]            : org.eclipse.smarthome.core.thing.xml.internal.ThingDescriptionList
converter-type[3]   : org.eclipse.smarthome.core.thing.xml.internal.ThingDescriptionConverter
version             : 1.4.7
-------------------------------
com.thoughtworks.xstream.converters.ConversionException:  : ParseError at [row,col]:[426,16]
Message: /var/lib/openhab2/cache/org.eclipse.osgi/316/0/bundleFile :  : ParseError at [row,col]:[426,16]
Message: /var/lib/openhab2/cache/org.eclipse.osgi/316/0/bundleFile
---- Debugging information ----
message             :  : ParseError at [row,col]:[426,16]
Message: /var/lib/openhab2/cache/org.eclipse.osgi/316/0/bundleFile
cause-exception     : com.thoughtworks.xstream.io.StreamException
cause-message       :  : ParseError at [row,col]:[426,16]
Message: /var/lib/openhab2/cache/org.eclipse.osgi/316/0/bundleFile
class               : org.eclipse.smarthome.config.xml.util.NodeValue
required-type       : org.eclipse.smarthome.config.xml.util.NodeValue
converter-type      : org.eclipse.smarthome.config.xml.util.NodeValueConverter
path                : /thing-descriptions/channel-type[41]/label
line number         : 426
class[1]            : java.util.ArrayList
converter-type[1]   : com.thoughtworks.xstream.converters.collections.CollectionConverter
class[2]            : org.eclipse.smarthome.core.thing.xml.internal.ChannelTypeXmlResult
converter-type[2]   : org.eclipse.smarthome.core.thing.xml.internal.ChannelTypeConverter
class[3]            : org.eclipse.smarthome.core.thing.xml.internal.ThingDescriptionList
converter-type[3]   : org.eclipse.smarthome.core.thing.xml.internal.ThingDescriptionConverter
version             : 1.4.7
-------------------------------
        at com.thoughtworks.xstream.core.TreeUnmarshaller.convert(TreeUnmarshaller.java:79) ~[107:org.eclipse.smarthome.config.xml:0.10.0.oh240]
        at com.thoughtworks.xstream.core.AbstractReferenceUnmarshaller.convert(AbstractReferenceUnmarshaller.java:65) ~[107:org.eclipse.smarthome.config.xml:0.10.0.oh240]
        at com.thoughtworks.xstream.core.TreeUnmarshaller.convertAnother(TreeUnmarshaller.java:66) ~[107:org.eclipse.smarthome.config.xml:0.10.0.oh240]
        at com.thoughtworks.xstream.core.TreeUnmarshaller.convertAnother(TreeUnmarshaller.java:50) ~[107:org.eclipse.smarthome.config.xml:0.10.0.oh240]
        at com.thoughtworks.xstream.converters.collections.AbstractCollectionConverter.readItem(AbstractCollectionConverter.java:71) ~[107:org.eclipse.smarthome.config.xml:0.10.0.oh240]
        at com.thoughtworks.xstream.converters.collections.CollectionConverter.addCurrentElementToCollection(CollectionConverter.java:98) ~[107:org.eclipse.smarthome.config.xml:0.10.0.oh240]
        at com.thoughtworks.xstream.converters.collections.CollectionConverter.populateCollection(CollectionConverter.java:91) ~[107:org.eclipse.smarthome.config.xml:0.10.0.oh240]
        at com.thoughtworks.xstream.converters.collections.CollectionConverter.populateCollection(CollectionConverter.java:85) ~[107:org.eclipse.smarthome.config.xml:0.10.0.oh240]
        at com.thoughtworks.xstream.converters.collections.CollectionConverter.unmarshal(CollectionConverter.java:80) ~[107:org.eclipse.smarthome.config.xml:0.10.0.oh240]
        at com.thoughtworks.xstream.core.TreeUnmarshaller.convert(TreeUnmarshaller.java:72) ~[107:org.eclipse.smarthome.config.xml:0.10.0.oh240]
        at com.thoughtworks.xstream.core.AbstractReferenceUnmarshaller.convert(AbstractReferenceUnmarshaller.java:65) ~[107:org.eclipse.smarthome.config.xml:0.10.0.oh240]
        at com.thoughtworks.xstream.core.TreeUnmarshaller.convertAnother(TreeUnmarshaller.java:66) ~[107:org.eclipse.smarthome.config.xml:0.10.0.oh240]
        at com.thoughtworks.xstream.core.TreeUnmarshaller.convertAnother(TreeUnmarshaller.java:50) ~[107:org.eclipse.smarthome.config.xml:0.10.0.oh240]
        at org.eclipse.smarthome.core.thing.xml.internal.AbstractDescriptionTypeConverter.unmarshal(AbstractDescriptionTypeConverter.java:190) ~[?:?]
        at com.thoughtworks.xstream.core.TreeUnmarshaller.convert(TreeUnmarshaller.java:72) ~[107:org.eclipse.smarthome.config.xml:0.10.0.oh240]
        at com.thoughtworks.xstream.core.AbstractReferenceUnmarshaller.convert(AbstractReferenceUnmarshaller.java:65) ~[107:org.eclipse.smarthome.config.xml:0.10.0.oh240]
        at com.thoughtworks.xstream.core.TreeUnmarshaller.convertAnother(TreeUnmarshaller.java:66) ~[107:org.eclipse.smarthome.config.xml:0.10.0.oh240]
        at com.thoughtworks.xstream.core.TreeUnmarshaller.convertAnother(TreeUnmarshaller.java:50) ~[107:org.eclipse.smarthome.config.xml:0.10.0.oh240]
        at com.thoughtworks.xstream.converters.collections.AbstractCollectionConverter.readItem(AbstractCollectionConverter.java:71) ~[107:org.eclipse.smarthome.config.xml:0.10.0.oh240]
        at com.thoughtworks.xstream.converters.collections.CollectionConverter.addCurrentElementToCollection(CollectionConverter.java:98) ~[107:org.eclipse.smarthome.config.xml:0.10.0.oh240]
        at com.thoughtworks.xstream.converters.collections.CollectionConverter.populateCollection(CollectionConverter.java:91) ~[107:org.eclipse.smarthome.config.xml:0.10.0.oh240]
        at com.thoughtworks.xstream.converters.collections.CollectionConverter.populateCollection(CollectionConverter.java:85) ~[107:org.eclipse.smarthome.config.xml:0.10.0.oh240]
        at com.thoughtworks.xstream.converters.collections.CollectionConverter.unmarshal(CollectionConverter.java:80) ~[107:org.eclipse.smarthome.config.xml:0.10.0.oh240]
        at com.thoughtworks.xstream.core.TreeUnmarshaller.convert(TreeUnmarshaller.java:72) ~[107:org.eclipse.smarthome.config.xml:0.10.0.oh240]
        at com.thoughtworks.xstream.core.AbstractReferenceUnmarshaller.convert(AbstractReferenceUnmarshaller.java:65) ~[107:org.eclipse.smarthome.config.xml:0.10.0.oh240]
        at com.thoughtworks.xstream.core.TreeUnmarshaller.convertAnother(TreeUnmarshaller.java:66) ~[107:org.eclipse.smarthome.config.xml:0.10.0.oh240]
        at com.thoughtworks.xstream.core.TreeUnmarshaller.convertAnother(TreeUnmarshaller.java:50) ~[107:org.eclipse.smarthome.config.xml:0.10.0.oh240]
        at org.eclipse.smarthome.core.thing.xml.internal.ThingDescriptionConverter.unmarshal(ThingDescriptionConverter.java:53) ~[?:?]
        at com.thoughtworks.xstream.core.TreeUnmarshaller.convert(TreeUnmarshaller.java:72) ~[107:org.eclipse.smarthome.config.xml:0.10.0.oh240]
        at com.thoughtworks.xstream.core.AbstractReferenceUnmarshaller.convert(AbstractReferenceUnmarshaller.java:65) ~[107:org.eclipse.smarthome.config.xml:0.10.0.oh240]
        at com.thoughtworks.xstream.core.TreeUnmarshaller.convertAnother(TreeUnmarshaller.java:66) ~[107:org.eclipse.smarthome.config.xml:0.10.0.oh240]
        at com.thoughtworks.xstream.core.TreeUnmarshaller.convertAnother(TreeUnmarshaller.java:50) ~[107:org.eclipse.smarthome.config.xml:0.10.0.oh240]
        at com.thoughtworks.xstream.core.TreeUnmarshaller.start(TreeUnmarshaller.java:134) ~[107:org.eclipse.smarthome.config.xml:0.10.0.oh240]
        at com.thoughtworks.xstream.core.AbstractTreeMarshallingStrategy.unmarshal(AbstractTreeMarshallingStrategy.java:32) ~[107:org.eclipse.smarthome.config.xml:0.10.0.oh240]
        at com.thoughtworks.xstream.XStream.unmarshal(XStream.java:1185) ~[107:org.eclipse.smarthome.config.xml:0.10.0.oh240]
        at com.thoughtworks.xstream.XStream.unmarshal(XStream.java:1169) ~[107:org.eclipse.smarthome.config.xml:0.10.0.oh240]
        at com.thoughtworks.xstream.XStream.fromXML(XStream.java:1115) ~[107:org.eclipse.smarthome.config.xml:0.10.0.oh240]
        at com.thoughtworks.xstream.XStream.fromXML(XStream.java:1062) ~[107:org.eclipse.smarthome.config.xml:0.10.0.oh240]
        at org.eclipse.smarthome.config.xml.util.XmlDocumentReader.readFromXML(XmlDocumentReader.java:85) ~[107:org.eclipse.smarthome.config.xml:0.10.0.oh240]
        at org.eclipse.smarthome.config.xml.osgi.XmlDocumentBundleTracker.parseDocuments(XmlDocumentBundleTracker.java:407) [107:org.eclipse.smarthome.config.xml:0.10.0.oh240]
        at org.eclipse.smarthome.config.xml.osgi.XmlDocumentBundleTracker.processBundle(XmlDocumentBundleTracker.java:394) [107:org.eclipse.smarthome.config.xml:0.10.0.oh240]
        at org.eclipse.smarthome.config.xml.osgi.XmlDocumentBundleTracker.access$6(XmlDocumentBundleTracker.java:389) [107:org.eclipse.smarthome.config.xml:0.10.0.oh240]
        at org.eclipse.smarthome.config.xml.osgi.XmlDocumentBundleTracker$2.run(XmlDocumentBundleTracker.java:359) [107:org.eclipse.smarthome.config.xml:0.10.0.oh240]
        at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) [?:?]
        at java.util.concurrent.FutureTask.run(FutureTask.java:266) [?:?]
        at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$201(ScheduledThreadPoolExecutor.java:180) [?:?]
        at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:293) [?:?]
        at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) [?:?]
        at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) [?:?]
        at java.lang.Thread.run(Thread.java:748) [?:?]
Caused by: com.thoughtworks.xstream.io.StreamException:  : ParseError at [row,col]:[426,16]
Message: /var/lib/openhab2/cache/org.eclipse.osgi/316/0/bundleFile
        at com.thoughtworks.xstream.io.xml.StaxReader.pullNextEvent(StaxReader.java:73) ~[?:?]
        at com.thoughtworks.xstream.io.xml.AbstractPullReader.readRealEvent(AbstractPullReader.java:148) ~[?:?]
        at com.thoughtworks.xstream.io.xml.AbstractPullReader.readEvent(AbstractPullReader.java:135) ~[?:?]
        at com.thoughtworks.xstream.io.xml.AbstractPullReader.getValue(AbstractPullReader.java:180) ~[?:?]
        at com.thoughtworks.xstream.io.ReaderWrapper.getValue(ReaderWrapper.java:48) ~[?:?]
        at com.thoughtworks.xstream.io.ReaderWrapper.getValue(ReaderWrapper.java:48) ~[?:?]
        at org.eclipse.smarthome.config.xml.util.NodeValueConverter.unmarshal(NodeValueConverter.java:38) ~[?:?]
        at com.thoughtworks.xstream.core.TreeUnmarshaller.convert(TreeUnmarshaller.java:72) ~[?:?]
        ... 49 more
Caused by: javax.xml.stream.XMLStreamException: ParseError at [row,col]:[426,16]
Message: /var/lib/openhab2/cache/org.eclipse.osgi/316/0/bundleFile
        at com.sun.org.apache.xerces.internal.impl.XMLStreamReaderImpl.next(XMLStreamReaderImpl.java:599) ~[?:?]
        at com.thoughtworks.xstream.io.xml.StaxReader.pullNextEvent(StaxReader.java:58) ~[?:?]
        at com.thoughtworks.xstream.io.xml.AbstractPullReader.readRealEvent(AbstractPullReader.java:148) ~[?:?]
        at com.thoughtworks.xstream.io.xml.AbstractPullReader.readEvent(AbstractPullReader.java:135) ~[?:?]
        at com.thoughtworks.xstream.io.xml.AbstractPullReader.getValue(AbstractPullReader.java:180) ~[?:?]
        at com.thoughtworks.xstream.io.ReaderWrapper.getValue(ReaderWrapper.java:48) ~[?:?]
        at com.thoughtworks.xstream.io.ReaderWrapper.getValue(ReaderWrapper.java:48) ~[?:?]
        at org.eclipse.smarthome.config.xml.util.NodeValueConverter.unmarshal(NodeValueConverter.java:38) ~[?:?]
        at com.thoughtworks.xstream.core.TreeUnmarshaller.convert(TreeUnmarshaller.java:72) ~[?:?]
        ... 49 more

I splited the file thing-types.xml into two files thing-types-xml and channel-types.xml and then it works :grinning:

/Mike