[XSL-LIST Mailing List Archive Home] [By Thread] [By Date]

Re: [xsl] output encoding problem (can't get UTF-8)


Subject: Re: [xsl] output encoding problem (can't get UTF-8)
From: "Joe Fawcett" <joefawcett@xxxxxxxxxxx>
Date: Sun, 7 Aug 2005 12:25:56 +0100

----- Original Message ----- From: "Gabriel K" <gabriel.klappenbach@xxxxxxxxxxxx>
To: <xsl-list@xxxxxxxxxxxxxxxxxxxxxx>
Sent: Sunday, August 07, 2005 11:50 AM
Subject: SV: [xsl] output encoding problem (can't get UTF-8)



I have tried this in the ASP:



... set oStream = createobject("Adodb.Stream") oStream = o.Document call transform(oStream)


sub transform(xmlObj) dim domXML, domXSL, processor, template

domXML.loadXML(xmlObj)
...

But still the output of the transform is malicious like before.
Am I using this object the wrong way?


/Gabriel


Try this, untested,

set oStream = createobject("Adodb.Stream")

oStream.type = adTypeText
oStream.open
oStream.writeText o.document
xmlDom.load oStream
oStream.close

You may need to set the character set explicitly on the stream.

http://msdn.microsoft.com/library/default.asp?url=/library/en-us/ado270/htm/mdprocharset.asp?frame=true

Joe


Current Thread