I have made a webservice which spits out some XML data. This
data gets the processing-instruction:
<?xml version="1.0" encoding="uft-8"?>
Is it possible to change the encoding of this processing-
instruction to e.g. "ISO-8859-1"? I've tried the following,
without any results:
Context.Response.ContentEncoding =
System.Text.Encoding.GetEncoding("ISO-8859-1");
Thanks for any help in advance.
JAA
data gets the processing-instruction:
<?xml version="1.0" encoding="uft-8"?>
Is it possible to change the encoding of this processing-
instruction to e.g. "ISO-8859-1"? I've tried the following,
without any results:
Context.Response.ContentEncoding =
System.Text.Encoding.GetEncoding("ISO-8859-1");
Thanks for any help in advance.
JAA