Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7159631
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 28, 20262026-05-28T13:15:47+00:00 2026-05-28T13:15:47+00:00

For example, say I have the following xml in a string: <?xml version=1.0 encoding=UTF-8?>

  • 0

For example, say I have the following xml in a string:

<?xml version="1.0" encoding="UTF-8"?>
<Stuff />

If I try to insert this into a SQL Server 2005 database table with an Xml column, I’ll get the following error (I’m using EF 4.1, but I don’t think that matters):

XML parsing: line 1, character 38, unable to switch the encoding

After doing some research, I learned that SQL Server expects the xml to be UTF-16. How do I convert it?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-28T13:15:48+00:00Added an answer on May 28, 2026 at 1:15 pm

    My first few attempts involved streams, byte arrays and many encoding issues. Turns out that strings in .NET are already UTF-16, so only the xml declaration needs to be changed.

    The answer is actually quite simple. Here’s an extension method that loads the string into an XmlDocument, changes the declaration, and grabs the OuterXml.

    public static class XmlDocumentExtensions
    {
        public static string ToEncoding(this XmlDocument document, Encoding encoding)
        {
            if (document.FirstChild.NodeType == XmlNodeType.XmlDeclaration)
            {
                XmlDeclaration xmlDeclaration = (XmlDeclaration)document.FirstChild;
                if (String.Compare(xmlDeclaration.Encoding, encoding.WebName, StringComparison.OrdinalIgnoreCase) != 0)
                {
                    xmlDeclaration.Encoding = encoding.WebName;
                    return document.OuterXml;
                }
            }
    
            return document.OuterXml;
        }
    }
    

    You can use it like so:

    XmlDocument document = new XmlDocument();
    document.LoadXml(xml);
    xml = document.ToEncoding(Encoding.Unicode);
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have the following xml structure : <?xml version=1.0 encoding=utf-8 ?> <nws> <url>http://cpa.hypotheses.org/feed</url> <url>http://news.ycombinator.com/rss</url>
Say for example I have the following string: var testString = Hello, world; And
Lets say I have the following xml (a quick example) <rows> <row> <name>one</name> </row>
Say I have the following code: <div onclick='location.href=http://www.example.com/'> <a href='#' onclick='alert(blah)'>click</a> </div> Is there
Say suppose I have the following Java code. public class Example { public static
Say for example, I have the following two tables: TableA { _id } TableB
i have problem use link_to_remote link_to_remote document example say link_to_remote Delete this post, :update
Say I have this url: http://site.example/dir/ In this folder I have these files: test.ascx.cs
Let's say we have the following XML document: <root> <options> ... </options> <children> <child
Let's say I have a line in an XML file like the following (derived

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.