Home. 
.

transparent

transparent

transparent

Altova Mailing List Archives


Re: UTF-8 / XslCompiledTransform

From: Martin Honnen <mahotrash@-----.-->
To: NULL
Date: 11/12/2008 12:53:00 PM
Gina_Marano wrote:

> This has been working for months until now. I finally get a foreign
> character and it blows up.
> 
> <?xml version="1.0" encoding="UTF-8"?>
> ...
> <ship_to_city>santana de parnaíba</ship_to_city>
> ...
> 
> 
> transformation code:
> 
> XmlTextReader readerOrigContent =
>     new XmlTextReader(new MemoryStream(UTF8Encoding.Default.GetBytes
> (sOrigXMLContent)));
> StringBuilder sbResult = new StringBuilder();
> StringWriter sResult = new StringWriter(sbResult);
> XmlTextWriter sXML = new XmlTextWriter(sResult);
> 
> XslCompiledTransform myXslTransform = new XslCompiledTransform();
> myXslTransform.Load(aXSLFileName);
> myXslTransform.Transform(readerOrigContent, null, sXML);

Forget about byte arrays, memory streams and encodings. Assuming you 
have a string with the markup of the XML document you want to transform 
then simply use an XmlReader over a StringReader
   using (XmlReader reader = XmlReader.Create(new 
StringReader(sOrigXMLContent)))
   {
      ...
      myXslTransform.Transform(reader, null, someWriter);
   }

Your code above also suggests you want a string as the transformation 
result. Based on that it should suffice to do e.g
   string result;
   using (XmlReader reader = XmlReader.Create(new 
StringReader(sOrigXMLContent)))
   {
     StringWriter writer = new StringWriter();
     XslCompiledTransform proc = new XslCompiledTransform();
     proc.Transform(reader, null, writer);
     result = writer.ToString();
   }

The Transform method has lots of overloads taking different types of 
arguments, make use of that instead of creating all those different 
objects (StringBuilder, StringWriter, XmlTextWriter).

-- 

	Martin Honnen --- MVP XML
	http://JavaScript.FAQTs.com/


transparent
Print
Mail
Like It
Disclaimer
.

These Archives are provided for informational purposes only and have been generated directly from the Altova mailing list archive system and are comprised of the lists set forth on www.altova.com/list/index.html. Therefore, Altova does not warrant or guarantee the accuracy, reliability, completeness, usefulness, non-infringement of intellectual property rights, or quality of any content on the Altova Mailing List Archive(s), regardless of who originates that content. You expressly understand and agree that you bear all risks associated with using or relying on that content. Altova will not be liable or responsible in any way for any content posted including, but not limited to, any errors or omissions in content, or for any losses or damage of any kind incurred as a result of the use of or reliance on any content. This disclaimer and limitation on liability is in addition to the disclaimers and limitations contained in the Website Terms of Use and elsewhere on the site.

.
.

transparent

transparent