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 7437309
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 29, 20262026-05-29T10:22:46+00:00 2026-05-29T10:22:46+00:00

I am trying to save an xml document, and I have been trying to

  • 0

I am trying to save an xml document, and I have been trying to get my code to work but mono is spitting out a very strange error. I have given the file it is trying to save to full ownership.

An example would be group.test.test to “Hello world!”

Here is the code:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.IO;
using System.Xml.Linq;

namespace Classic6
{
public class XmlSettings
{
    private Dictionary<string, XmlSetting> Values { get; set; }
    private string[] SettingFiles;
    public bool EnableSaving { get; set; }
    public event EventHandler<SettingChangedEventArgs> OnSettingChanged;
    /// <summary>
    /// The location of the XML file that new keys
    /// should be stored in (when a key is added
    /// via XmlSettings["key"] without a file, it
    /// will be saved here.
    /// </summary>
    public static string DefaultFile { get; set; }

    public XmlSettings()
    {
        Values = new Dictionary<string, XmlSetting>();
        EnableSaving = false;
    }

    public void Load(string SettingsDirectory)
    {
        SettingFiles = Directory.GetFiles(SettingsDirectory, "*.xml", SearchOption.AllDirectories);
        foreach (string file in SettingFiles)
        {
            try
            {
                Stream s = File.Open(file, FileMode.Open);
                XDocument d = XDocument.Load(s);
                s.Close();
                LoadRecursive(d.Root, file, string.Empty);
            }
            catch { }
        }

        if (string.IsNullOrEmpty(DefaultFile))
            DefaultFile = Path.Combine(SettingsDirectory, "bla.xml.bak.invalid");
    }

    private void LoadRecursive(XElement root, string sourceFile, string path)
    {
        foreach (XElement e in root.Elements())
        {
            if (e.Elements().Count() != 0)
                LoadRecursive(e, sourceFile, path + e.Name + ".");
            foreach (XAttribute a in e.Attributes())
            {
                Values[(path + e.Name.LocalName.ToString() + "." +
                    a.Name.LocalName.ToString()).ToLower()] = new XmlSetting(sourceFile, a.Value, true);
            }
            if (Values.ContainsKey((path + e.Name.LocalName.ToString()).ToLower()))
            {
                if (Values[(path + e.Name.LocalName.ToString()).ToLower()].Value != e.Value)
                {
                    if (OnSettingChanged != null)
                        OnSettingChanged(this, new SettingChangedEventArgs((path + e.Name.LocalName.ToString()).ToLower(),
                            Values[(path + e.Name.LocalName.ToString()).ToLower()].Value, e.Value));
                }
            }
            Values[(path + e.Name.LocalName.ToString()).ToLower()] = new XmlSetting(sourceFile, e.Value, false);
        }
    }

    public int GetInt(string Key)
    {
        int i = -1;
        if (!int.TryParse(this[Key], out i) && !Key.StartsWith("command") && !Key.Contains("port"))
            Server.server.Log("Setting error: " + Key + " is not a valid integer.");
        return i;
    }

    public bool GetBool(string Key)
    {
        bool b = false;
        if (!bool.TryParse(this[Key], out b))
            Server.server.Log("Setting error: " + Key + " is not a valid boolean.");
        return b;
    }

    public bool ContainsKey(string Key)
    {
        return Values.ContainsKey(Key.ToLower());
    }

    public string this[string key]
    {
        get
        {
            if (!Values.ContainsKey(key.ToLower()))
                return "";
            return Values[key.ToLower()].Value;
        }
        set
        {
            if (OnSettingChanged != null)
                OnSettingChanged(this, new SettingChangedEventArgs(key, Values.ContainsKey(key.ToLower()) ? Values[key.ToLower()].Value : DefaultFile, value));
            if (Values.ContainsKey(key))
                Values[key.ToLower()].Value = value;
            else
                Values[key.ToLower()] = new XmlSetting(DefaultFile, value, false);

            if (string.IsNullOrEmpty(DefaultFile))
                return;
            if (!EnableSaving)
                return;

            XDocument d = new XDocument();

            if (File.Exists(Values[key.ToLower()].SourceFile))
            {
                Stream s = File.Open(Values[key.ToLower()].SourceFile, FileMode.OpenOrCreate);
                d = XDocument.Load(s, LoadOptions.PreserveWhitespace);
                s.Close();
            }
            else
            {
                d = new XDocument();
                d.Add(new XElement("Classic6"));
            }
            // Locate this property
            string[] parts = key.ToLower().Split('.');
            XElement currentElement = d.Root;
            for (int i = 0; i < parts.Length; i++ )
            {
                bool found = false;
                if (parts.Length - 1 == i)
                {
                    foreach (XAttribute a in currentElement.Attributes())
                    {
                        if (a.Name.LocalName.ToLower() == parts[i])
                        {
                            found = true;
                            break;
                        }
                    }
                }
                foreach (XElement e in currentElement.Elements())
                {
                    if (e.Name.LocalName.ToLower() == parts[i])
                    {
                        currentElement = e;
                        found = true;
                        break;
                    }
                }
                if (!found)
                {
                    XElement el = new XElement(parts[i]);
                    currentElement.Add(el);
                    currentElement = el;
                }
            }
            if (Values[key.ToLower()].IsAttribute)
                currentElement.SetAttributeValue(parts[parts.Length - 1], Values[key.ToLower()].Value);
            else
                currentElement.SetValue(Values[key.ToLower()].Value);

            d.Save(Values[key.ToLower()].SourceFile);
        }
    }
}

internal class XmlSetting
{
    public string SourceFile { get; set; }
    public string Value { get; set; }
    public bool IsAttribute { get; set; }

    public XmlSetting(string SourceFile, string Value, bool IsAttribute)
    {
        this.SourceFile = SourceFile;
        this.Value = Value;
        this.IsAttribute = IsAttribute;
    }
}

public class SettingChangedEventArgs : EventArgs
{
    public string Key { get; set; }
    public string OldValue { get; set; }
    public string NewValue { get; set; }

    public SettingChangedEventArgs(string Key, string OldValue, string NewValue)
    {
        this.Key = Key;
        this.OldValue = OldValue;
        this.NewValue = NewValue;
    }
}
}

Here is the error it gives me:

Unhandled Exception: System.InvalidOperationException: This XmlWriter does not accept Text at this state Prolog.
at System.Xml.XmlTextWriter.ShiftStateContent (System.String occured, Boolean allowAttribute) [0x00000] in <filename unknown>:0 
at System.Xml.XmlTextWriter.WriteString (System.String text) [0x00000] in <filename unknown>:0 
at System.Xml.DefaultXmlWriter.WriteString (System.String text) [0x00000] in <filename unknown>:0 
at System.Xml.Linq.XText.WriteTo (System.Xml.XmlWriter w) [0x00000] in <filename unknown>:0 
at System.Xml.Linq.XDocument.WriteTo (System.Xml.XmlWriter w) [0x00000] in <filename unknown>:0 
at System.Xml.Linq.XDocument.Save (System.Xml.XmlWriter w) [0x00000] in <filename unknown>:0 
at System.Xml.Linq.XDocument.Save (System.String filename, SaveOptions options) [0x00000] in <filename unknown>:0 
at System.Xml.Linq.XDocument.Save (System.String filename) [0x00000] in <filename unknown>:0 
at Classic6.XmlSettings.set_Item (System.String key, System.String value) [0x00000] in <filename unknown>:0 
at Classic6.CmdSettings.Use (Classic6.RemoteClient c, System.String message) [0x00000] in <filename unknown>:0 
at Classic6.ClassicServer.HandleCommand (Classic6.RemoteClient c, System.String msg) [0x00000] in <filename unknown>:0 
at Classic6Server.Program.ParseInput (System.String input) [0x00000] in <filename unknown>:0 
at Classic6Server.Program.Main () [0x00000] in <filename unknown>:0 
[ERROR] FATAL UNHANDLED EXCEPTION: System.InvalidOperationException: This XmlWriter does not accept Text at this state Prolog.
at System.Xml.XmlTextWriter.ShiftStateContent (System.String occured, Boolean allowAttribute) [0x00000] in <filename unknown>:0 
at System.Xml.XmlTextWriter.WriteString (System.String text) [0x00000] in <filename unknown>:0 
at System.Xml.DefaultXmlWriter.WriteString (System.String text) [0x00000] in <filename unknown>:0 
at System.Xml.Linq.XText.WriteTo (System.Xml.XmlWriter w) [0x00000] in <filename unknown>:0 
at System.Xml.Linq.XDocument.WriteTo (System.Xml.XmlWriter w) [0x00000] in <filename unknown>:0 
at System.Xml.Linq.XDocument.Save (System.Xml.XmlWriter w) [0x00000] in <filename unknown>:0 
at System.Xml.Linq.XDocument.Save (System.String filename, SaveOptions options) [0x00000] in <filename unknown>:0 
at System.Xml.Linq.XDocument.Save (System.String filename) [0x00000] in <filename unknown>:0 
at Classic6.XmlSettings.set_Item (System.String key, System.String value) [0x00000] in <filename unknown>:0 
at Classic6.CmdSettings.Use (Classic6.RemoteClient c, System.String message) [0x00000] in <filename unknown>:0 
at Classic6.ClassicServer.HandleCommand (Classic6.RemoteClient c, System.String msg) [0x00000] in <filename unknown>:0 
at Classic6Server.Program.ParseInput (System.String input) [0x00000] in <filename unknown>:0 
at Classic6Server.Program.Main () [0x00000] in <filename unknown>:0

and in the xml file it overwrites it completely and only leaves this:

<?xml version="1.0" encoding="utf-8"?>

which is a lot different from this:

<?xml version="1.0" encoding="utf-8" ?>
<Classic6>
  <group>
   <test>Will I change</test>
   <well>I hope so</well>
  </group>
</Classic6>
  • 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-29T10:22:46+00:00Added an answer on May 29, 2026 at 10:22 am

    We figured it out: Mono doesn’t play well with whitespace, apparently, so doing this:

                d = XDocument.Load(s, LoadOptions.None);
    

    instead of this

                d = XDocument.Load(s, LoadOptions.PreserveWhitespace);
    

    will let it save properly.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a xml document ~10mb in size. It has relatively simple structure but
I am trying to save a LINQ XML document using a StreamWriter. Using the
I have a webmethod which is trying to construct xml data document and return
I'm trying to save some XML-Data in my UserSettings (Properties.Settings.Default.UserSettings) in a .NET Winforms
I am trying to save data to a database on a button push, but
I'm trying to save a PDF file to SQL Server and I already have
I am trying to save images using the following code: - (void)writeData{ if(cacheFileName==nil) return;
I am trying to build a parser and save the results as an xml
I am trying to parse an xml document in php which is somewhat tough
I am trying to auto increment my xml file. I have a form that

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.