Code development platform for open source projects from the European Union institutions

Skip to content
Snippets Groups Projects
Commit 8179c46b authored by Harald Martini's avatar Harald Martini
Browse files

Changed Namespace attribute in GetAirdragXMLElementV1 (vif was not created...

Changed Namespace attribute in  GetAirdragXMLElementV1 (vif was not created with V1.0 Airdrag component)
parent b9130345
No related branches found
No related tags found
No related merge requests found
using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.IO;
using System.Linq;
using System.Security.Cryptography;
......@@ -66,7 +67,7 @@ namespace TUGraz.VectoCore.OutputData.XML.DeclarationReports.VehicleInformationF
protected XNamespace v23 = "urn:tugraz:ivt:VectoAPI:DeclarationDefinitions:DEV:v2.3";
protected XNamespace v28 = "urn:tugraz:ivt:VectoAPI:DeclarationDefinitions:DEV:v2.8";
protected XNamespace v10 = "urn:tugraz:ivt:VectoAPI:DeclarationDefinitions:v1.0";
private XElement _primaryVehicle;
private List<XElement> _manufacturingStages;
private List<XAttribute> _namespaceAttributes;
......@@ -389,7 +390,8 @@ namespace TUGraz.VectoCore.OutputData.XML.DeclarationReports.VehicleInformationF
return new XElement(v28 + XMLNames.Component_AirDrag,
new XElement(v20 + XMLNames.Report_DataWrap,
new XAttribute(xsi + XMLNames.Component_Type_Attr, XMLNames.AirDrag_Data_Type_Attr),
new XAttribute("xmlns", v10.NamespaceName),
//new XAttribute("xmlns", v10.NamespaceName),
new XAttribute(XNamespace.Xmlns + "v1.0", v10.NamespaceName),
dataNode.Attributes != null && dataNode.Attributes[XMLNames.Component_ID_Attr] != null ?
new XAttribute(XMLNames.Component_ID_Attr, dataNode.Attributes[XMLNames.Component_ID_Attr].InnerText) : null,
GetElements(dataNode.ChildNodes)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment