diff --git a/VectoCore/VectoCore/OutputData/XML/AbstractXMLWriter.cs b/VectoCore/VectoCore/OutputData/XML/AbstractXMLWriter.cs
index 1eb9251401a7b6f6cb2519d71589fbc746304c77..380ff1eb7915f8237e7f03b14b9b5ae7553f58d5 100644
--- a/VectoCore/VectoCore/OutputData/XML/AbstractXMLWriter.cs
+++ b/VectoCore/VectoCore/OutputData/XML/AbstractXMLWriter.cs
@@ -14,8 +14,8 @@ namespace TUGraz.IVT.VectoXML.Writer
 	public abstract class AbstractXMLWriter
 	{
 		//protected const string SchemaLocationBaseUrl = "http://markus.quaritsch.at/VECTO/";
-		protected const string SchemaLocationBaseUrl = "http://www.ivt.tugraz.at/VECTO/";
-		protected const string SchemaVersion = "0.6";
+		protected const string SchemaLocationBaseUrl = "https://webgate.ec.europa.eu/CITnet/svn/VECTO/trunk/Share/XML/XSD/";
+		protected const string SchemaVersion = "0.8";
 
 		protected XNamespace tns;
 		protected XNamespace rootNamespace;
diff --git a/VectoCore/VectoCore/OutputData/XML/XMLDeclarationWriter.cs b/VectoCore/VectoCore/OutputData/XML/XMLDeclarationWriter.cs
index 9e290eaadc0cd76ecfa10ba2940dc35575a4d416..3f02a253712294c975030921ee90027e1fe67e8c 100644
--- a/VectoCore/VectoCore/OutputData/XML/XMLDeclarationWriter.cs
+++ b/VectoCore/VectoCore/OutputData/XML/XMLDeclarationWriter.cs
@@ -286,8 +286,8 @@ namespace TUGraz.VectoCore.OutputData.XML
 
 			return new XElement(tns + XMLNames.Component_AxleWheels,
 				new XElement(tns + XMLNames.ComponentDataWrapper,
-					new XAttribute(XMLNames.Component_ID_Attr,
-						string.Format("AXLWHL-{0}", data.AxleConfiguration.GetName())),
+					//new XAttribute(XMLNames.Component_ID_Attr,
+					//	string.Format("AXLWHL-{0}", data.AxleConfiguration.GetName())),
 					new XElement(tns + XMLNames.AxleWheels_Axles, axles))
 				);
 		}