Error when creating a XML-file

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • Erik06
    New Member
    • Jun 2006
    • 5

    Error when creating a XML-file

    Hi.
    I got a webservice that returns a xml-document, and has installed it on a Windows server 2003, and everything works ok. But when I install it on a Windows 2000 server, the app crash. I got a errormessage: 'System does not support the specified encoding. Error processing resource' + the url + <?xml version="1.0" encoding="utf-8"?>. Both use the same version of asp.net (2.0.50727). Is there anyone who got a tip how to solve this on the 2000-server? I have searched on google and msdn and so, but cannot find any good answer.
  • jkmyoung
    Recognized Expert Top Contributor
    • Mar 2006
    • 2057

    #2
    Change the encoding string to "ISO-8859-1" as opposed to UTF-8.

    Comment

    Working...