"Martin Honnen" <mahotrash@yahoo.de> wrote in message
news:e2wmujcxFHA.3588@tk2msftngp13.phx.gbl...
>
>
> Jeroen De Brabander wrote:
>
>
>> There are indeed no parse errors.
>>
>> It is a webservice on WS2003 that parses the XML and creates SharePoint
>> websites from it.
>> The content of the XML is used to define title and description for the
>> websites.
>>
>> On my testing machine the special characters are translated correctly, in
>> the live environment I get question marks.
>
> I have no knowledge about Sharepoint but if you say web sites then the
> ouput problem with the '??' is probably in a browser rendering those web
> sites. Assuming the content is served over HTTP then you need to make sure
> the output encoding SharePoint creates is transmitted to the
> browser/client in a HTTP response header e.g. in ASP you would do
> Response.ContentType = "text/html; charset=UTF-8"
> for instance where of course the charset needs to be what the server
> generates.
> I don't think it is an XML problem really, if you can parse the XML input
> fine then in your .NET code you should have strings with unicode
> characters and the problem occurs later when your application creates the
> output and probably then when the client/browser tries to render the
> output.
>
>
> --
>
> Martin Honnen --- MVP XML
>
http://JavaScript.FAQTs.com/ test-environment is fine.
If I watch the XML (the file), it is fine. I select the nodes en use the
string as input for the description/title fields.
I agree with you that the problem probably is not the XML.
The only difference is that they're on a different machine ... Can there be