XML File generation
-
Hi, I try to generate an xml file using the iso 20022 norm ( it is ISO 20022 Payments Messages norm). My C# code is :
XmlTextWriter myXmlTextWriter = new XmlTextWriter ("D:/New Folder/Marwen.xml", System.Text.Encoding.UTF8);
myXmlTextWriter.Formatting = Formatting.Indented;
myXmlTextWriter.WriteStartDocument (false);
myXmlTextWriter.WriteStartElement ("root");
myXmlTextWriter.WriteAttributeString ("xmlns","urn:iso:std:iso:20022:tech:xsd:pain.001.001.02");
myXmlTextWriter.WriteStartElement ("pain.001.001.02");The file is generated succesfully. My question is " is it LEGAL to do that?The norm "iso 20022" is it protected( so I should have permission to write the head like that?
myXmlTextWriter.WriteAttributeString ("xmlns","urn:iso:std:iso:20022:tech:xsd:pain.001.001.02");
is it simplly an indication for using this norm to write my xml file messages? Plzzzzzzzzzz help me I am really blocked Thank u
-
Hi, I try to generate an xml file using the iso 20022 norm ( it is ISO 20022 Payments Messages norm). My C# code is :
XmlTextWriter myXmlTextWriter = new XmlTextWriter ("D:/New Folder/Marwen.xml", System.Text.Encoding.UTF8);
myXmlTextWriter.Formatting = Formatting.Indented;
myXmlTextWriter.WriteStartDocument (false);
myXmlTextWriter.WriteStartElement ("root");
myXmlTextWriter.WriteAttributeString ("xmlns","urn:iso:std:iso:20022:tech:xsd:pain.001.001.02");
myXmlTextWriter.WriteStartElement ("pain.001.001.02");The file is generated succesfully. My question is " is it LEGAL to do that?The norm "iso 20022" is it protected( so I should have permission to write the head like that?
myXmlTextWriter.WriteAttributeString ("xmlns","urn:iso:std:iso:20022:tech:xsd:pain.001.001.02");
is it simplly an indication for using this norm to write my xml file messages? Plzzzzzzzzzz help me I am really blocked Thank u
This is the Intellectual Property Rights Policy[^] posted at the ISO20022.org site. (I am not a lawyer;) []Loren