Tagged Questions
The xnamespace tag has no wiki summary.
2
votes
1answer
332 views
How to dynamically set local XML namespace?
I have several xml namespaces that expose the same schema.
I want to use a function that dynamically accepts a namespace and applies the attributes or the properties according to the specified ...
1
vote
1answer
72 views
Creating XDocument with xsi:schemaLocation namespace
I need to create the following XML and I'm trying to do this using XDocument. However, I'm having trouble specifying the name spaces.
<AssessmentOrderRequest
...
1
vote
3answers
97 views
Parse XDocument without having to keep specifying the default namespace
I have some XML data (similar to the sample below) and I want to read the values in code.
Why am I forced to specify the default namespace to access each element? I would have expected the default ...
1
vote
1answer
63 views
What is happening when you declare an XNamespace and assign a string value?
Here is the example from MSDN for XNamespace:
XNamespace aw = "http://www.adventure-works.com";
XElement root = new XElement(aw + "Root", "Content");
Console.WriteLine(root);
I am not sure what is ...
1
vote
2answers
164 views
XDocument/xNamespace
<AllscriptsMessageEnvelope xmlns="http://Allscripts.com/UAI/Schemas/2010/02/15" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:ns4="urn:Allscripts:Hub:PatientMsg" ...
1
vote
1answer
970 views
Using XNamespace to create nicely formatted XML
I want to create a Xml file that looks something like this:
<Root xmlns:ns1="name1" xmlns:ns2="name2">
<ns1:element1 />
<ns1:element2 ...
1
vote
2answers
2k views
Setting XML namespaces with the System.Xml.Linq API
I'm having trouble generating XML along the lines of this:
<Root xmlns:brk="http://somewhere">
<child1>
<brk:node1>123456</brk:node1>
...
0
votes
1answer
20 views
XDocument.Validate namespace problems
I have modified the MSDN example to reflect my problem.
When using a namespace I can't get the document to validate as I would expect and when validating a document that doesnt have a namespace it ...
0
votes
2answers
51 views
How to set element value with namespace in linq?
I am developing silverlight web part for sharepoint 2010. I have an xml file in my application as follows
<sst xmlns="http://schemas.openxmlformats.org/spreadsheetml/2006/main" count="67" ...