xsl-list
[Top] [All Lists]

RE: Problem with rendering of &#160

2004-04-15 06:50:26
I'm obviously doing something wrong with the transformNodeToObject code.
I get no output using the transformNodeToObject.

Dim Source As New Msxml2.DOMDocument
  Dim stylesheet As New Msxml2.DOMDocument
   Dim result As New Msxml2.DOMDocument
 
  ' Load data.
  Source.async = False
  Source.Load "sample.xml"

  ' Load style sheet.
  stylesheet.async = False
  stylesheet.Load "stylesheet1.xsl"

  ' Set up the resulting document.
  result.async = False
  result.validateOnParse = True
  
  ' Parse results into a result DOM Document.
  Source.transformNodeToObject stylesheet, result

   MsgBox result.xml

-----Original Message-----
From: Passin, Tom [mailto:tpassin(_at_)mitretek(_dot_)org]
Sent: Wednesday, April 14, 2004 3:23 PM
To: xsl-list(_at_)lists(_dot_)mulberrytech(_dot_)com
Subject: RE: [xsl] Problem with rendering of &#160


From: Richard(_dot_)McMillian(_at_)cexp(_dot_)com 
[mailto:Richard(_dot_)McMillian(_at_)cexp(_dot_)com] 

This thread addressed the problem back in 2002.  Has anyone 
come across a better solution?

http://www.biglist.com/lists/xsl-list/archives/200211/msg00172.html


Sure, Julian Reschke posted it earlier today.  The MS component always
generates utf-16 when you use it to create strings instead of objects.
Thus there ends up being a mismatch between the declared encoding and
the actual encoding.

This is pretty much a FAQ by now, but until you posted your code no one
could tell what you were invoking the problem.

The solution is not to futz around with the meta element and trying to
trick the browser, but the generate the output using objects instead of
strings.

Once the encoding discrepancy is fixed, the presence of the meta element
will not cause any problems and could even be beneficial (as when the
document is loaded from a file, and thus has no headers to state the
encoding).

Cheers,

Tom P

--+------------------------------------------------------------------
XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list
To unsubscribe, go to: http://lists.mulberrytech.com/xsl-list/
or e-mail: <mailto:xsl-list-unsubscribe(_at_)lists(_dot_)mulberrytech(_dot_)com>
--+--


<Prev in Thread] Current Thread [Next in Thread>