[
Lists Home |
Date Index |
Thread Index
]
Hi Raj,
Raj wrote:
>Hi,
>I am facing a problem with XML UTF 16 encoding and need help on this.
>When I use UTF 16 encoding with MSXML Parser 3.0 and when I use the function
>loadXML to load the XML string into the XML DOMDocument it returns False.
>i.e it doesnot load the document. Can you suggest me a solution to this
>problem ASAP.
>
I am not an expert on this, but when I had this problem I read that the
MSXSML3 loadXML() function always expects its parameter to be encoded as
UTF-8, which is the native encoding for JScript. I believe your two
options are either to convert the string to UTF-8, or to write it to a
file and load it using the load() function.
I believe that UTF-8 should be able to represent all unicode characters,
if only as escape sequences, so your language requirements should not be
a problem.
Francis.
|