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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 10, 20262026-05-10T23:14:16+00:00 2026-05-10T23:14:16+00:00

A longwinded question – please bear with me! I want to programatically create an

  • 0

A longwinded question – please bear with me!

I want to programatically create an XML document with namespaces and schemas. Something like

<myroot      xmlns='http://www.someurl.com/ns/myroot'      xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance'      xsi:schemaLocation='http://www.someurl.com/ns/myroot http://www.someurl.com/xml/schemas/myschema.xsd'>      <sometag>somecontent</sometag>  </myroot> 

I’m using the rather splendid new LINQ stuff (which is new to me), and was hoping to do the above using an XElement.

I’ve got a ToXElement() method on my object:

  public XElement ToXElement()   {      XNamespace xnsp = 'http://www.someurl.com/ns/myroot';       XElement xe = new XElement(         xnsp + 'myroot',            new XElement(xnsp + 'sometag', 'somecontent')         );       return xe;   } 

which gives me the namespace correctly, thus:

<myroot xmlns='http://www.someurl.com/ns/myroot'>    <sometag>somecontent</sometag> </myroot> 

My question: how can I add the schema xmlns:xsi and xsi:schemaLocation attributes?

(BTW I can’t use simple XAtttributes as I get an error for using the colon ‘:’ in an attribute name…)

Or do I need to use an XDocument or some other LINQ class?

Thanks…

  • 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. 2026-05-10T23:14:16+00:00Added an answer on May 10, 2026 at 11:14 pm

    From this article, it looks like you new up more than one XNamespace, add an attribute in the root, and then go to town with both XNamespaces.

    // The http://www.adventure-works.com namespace is forced to be the default namespace. XNamespace aw = 'http://www.adventure-works.com'; XNamespace fc = 'www.fourthcoffee.com'; XElement root = new XElement(aw + 'Root',     new XAttribute('xmlns', 'http://www.adventure-works.com'), ///////////  I say, check out this line.     new XAttribute(XNamespace.Xmlns + 'fc', 'www.fourthcoffee.com'), ///////////     new XElement(fc + 'Child',         new XElement(aw + 'DifferentChild', 'other content')     ),     new XElement(aw + 'Child2', 'c2 content'),     new XElement(fc + 'Child3', 'c3 content') ); Console.WriteLine(root); 

    Here’s a forum post showing how to do the schemalocation.

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

Sidebar

Ask A Question

Stats

  • Questions 148k
  • Answers 148k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer As you mentioned, I'd use a stored procedure, call that… May 12, 2026 at 9:27 am
  • Editorial Team
    Editorial Team added an answer I'm not sure its your case, but I've heard that… May 12, 2026 at 9:27 am
  • Editorial Team
    Editorial Team added an answer It's a bit like Jazz, if you have to ask… May 12, 2026 at 9:27 am

Related Questions

A longwinded question - please bear with me! I want to programatically create an
Doing odd/even styling with jQuery is pretty easy: $(function() { $(.oddeven tbody tr:odd).addClass(odd); $(.oddeven
Apologies in advance for the long-winded question. I'm really a database programmer, but have
I have a question, and I'm going to tag this subjective since that's what
Our development process is highly automated via a raft of bash and php scripts

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

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.