XElement is part of System.Xml.Linq in .NET Framework. This class represents an XML element, the fundamental XML construct.
0
votes
1answer
24 views
Controling XElement Attribute Namespace Names
I'm in the process of building an export engine that will take our company's data and export it as XML based on the pattern provided in our database. One of the exports I need to implement must have ...
0
votes
2answers
18 views
searching for an unnamed nested XElement by a specific XAttribute
Here is what my XML looks like (Yes, I know the XML is ugly). I'm trying to search and remove any nodes from this XDocument that have the isConstField attribute set to "Y" without iterating through ...
0
votes
1answer
40 views
How I can fill my ASP.NET TreeView out of Code?
hi guys i have a problem with the treeview control in asp.net. I want to fill that with a xml file but the treeview in asp.net is diffrent to the window form treeview control :/
The name of my ...
0
votes
1answer
29 views
Removing $#x0 from string
I have a string that I'm trying to parse to XML like this:
XElement.Parse(XMLdata)
But the problem I'm having is that XMLdata contains this text:
$#x0 resulting in the following exception : ...
0
votes
1answer
29 views
How to pass a variable to element in XDocument using vb.net
Here is my code in VB.net. It displays AB, CD, EF. How do I make a subroutine
so I can call like: Sub-name(field65, field547, field66)?
Sub main()
Dim fileName As String = "C:\AAA\test5.xml"
...
0
votes
1answer
23 views
No mapping exists from object type System.Xml.Linq.XAttribute to a known managed provider native type
I'm parsing xml that looks something like this:
<record rid="112152">
<woods___plastics />
<thermal_and_moisture_protection />
<doors_and_windows />
...
-2
votes
2answers
31 views
How to get handle to a specific XElement
Consider you have the following xml structure:
<root>
<File> a.txt
<Version> 1.5 </Version>
</File>
<File> b.txt
<Version> 1.0 ...
0
votes
2answers
41 views
Getting XML Elements By ID in C#
XML
<?xml version="1.0" encoding="utf-8" ?>
<animals>
<animal id="fisrt">
<type>Dog</type>
<name>Han</name>
</animal>
...
-1
votes
2answers
51 views
Adding XML string to XElement
Hi I need to create an XElement from a string, which can be xml or plain string.
This code
var doc = new XDocument(
new XElement("results", "<result>...</result>")
);
...
0
votes
2answers
59 views
How to find XElement specific Children (in c# with LINQ)?
I've got an XML file like this :
<root>
<environment env="PROD">
<key name="Big Key" propagate="true" value="21" />
</environment>
<environment env="PRE-PROD">
...
2
votes
2answers
42 views
XElement.Element returning null for newly created element
I am using XElement to create an XMLDocument which is used in a hierarchical WPF treeview. If I create a new element with :
x_element = new XElement("node",
new XElement("tree_id", ...
2
votes
1answer
119 views
Converting XElement to XmlElement for XSLT transformation ASP.NET C#
I'm working on a project which requires me to load an xml document into xslt and transform it to display in an html table. The problem is that because I am using LINQ to create the XML, all of the ...
0
votes
1answer
45 views
Loading a Resource file with XElement
I'm trying to load an XML file that is an embedded resource.
I'm using the code below and it's returning an error saying the URI is too long.
base.document = ...
0
votes
2answers
37 views
How to add a node as a children to an existing node XElement?
Here is my code.
XElement Response = new XElement("Response",
new XElement("RequestId", requestID),
new XElement("ResponseId", ...
-1
votes
1answer
34 views
how to find an element value in xml when we have multiple namespaces
I want to get the value of the element rsm:CIIHExchangedDocument/ram:ID
But I have problem with multiple namespaces, and null values (I can not know if requested element exists)
It can be achieved ...
0
votes
1answer
36 views
linq to xml not returning any results possible namespace issue?
Here are the first few lines of my XML document:
<?xml-stylesheet type="text/xsl" href="/3.0/style/exchange.xsl"?>
<ops:world-patent-data xmlns="http://www.epo.org/exchange" ...
0
votes
2answers
59 views
XML file data is lost when sudden shutdown is occurred
I have an application that stores data in XML file every 500 ms using XElement object's .Save("path") method.
The problem is : when a sudden shutdown is occurred the content of the file is deleted so ...
1
vote
2answers
91 views
When saving XML file with XElement, alignment in file changes as well, how to avoid?
I am using
XElement root = XElement.Load(filepath);
to load XML file, then finding things that I need.
IEnumerable<XElement> commands = from command in MyCommands
...
0
votes
1answer
91 views
Transform Binary to XML in OutSequence from WCF Service Proxy in WSO2 ESB
I'm using a proxy service in WSO2 ESB in between a REST api and a WCF Service. The WCF service that I am calling accepts and returns an XElement object. When the response of the WCF service enters the ...
0
votes
0answers
77 views
Local Database creation with Windows Phone is throwing an exception finding an SQL type for XElement
I've created a class for the local database with Windows Phone (below):
public class LocalDatabaseResources : DataContext
{
public LocalDatabaseResources(string connectionString)
: ...
1
vote
1answer
196 views
c# linq to xml XElement group by ancestor attribute to create list of entities collection with key
I have below xml.
<?xml version="1.0" encoding="utf-8" ?>
<MESSAGE ID="PND">
<STORE ID="6697">
<HEADER ID ="1"
LOADCLOSEDDATETIME="20130312121212"
...
0
votes
1answer
30 views
Select from XElement with where statement using linq
I have and XElement object that was built up from an XML looking like this:
<Root>
<Oppurtunities>
<Oppurtunity>
<Title> Account Manager</Title>
...
0
votes
0answers
40 views
Xelement add namespace prefix only with value
I am needing to add a new child XElement with the namespace prefix only. For the life of me it's driving me insane. Here is an example of the xml I am having to append/insert a child to:
...
0
votes
1answer
40 views
XElement add style
Im trying to have a XElement with style like:
<g style="fill-opacity:0.7">
so im doing this:
XElement root = new XElement("g");
root.SetAttributeValue("style",
from ...
0
votes
2answers
47 views
How to convert XML to Xelement?
string queryText = string.Format(@"<Where>
<And>
<Neq><FieldRef Name='EventType' /><Value Type='recurrence'>3</Value> ...
0
votes
2answers
79 views
How to bind data from XElement to combobox
XElement Doc.
<forms xmlns="">
<form>
<id>1361</id>
<name>TEST3</name>
</form>
<form>
<id>1658</id>
...
0
votes
3answers
33 views
Add attribute without name and value?
Whether XML element attribute name can be empty:
<?xml version="1.0" encoding="utf-8"?>
<test>
<tables>
<gg qqq="">
<ss ""=""/>
<mm ""=""/>
...
0
votes
1answer
55 views
Wildcard Search in XElement
I am using XElement to search a XML document that a user selects through openfiledialog.
Here is the code:
private void dothis()
{
string query;
XElement xml = ...
0
votes
2answers
491 views
Convert flat text file to XML in C#
I have a .txt file and I have to change it in xml file. My .txt file is pipe-delimited ("|", vertical bar) flat text file.
Like this:
169055|759656025621|Dos|Justamente Tres|Kill Rock ...
-1
votes
1answer
86 views
Dynamic Nested XElements
I wish to create an XML and this will include something as follows :-
<?xml version="1.0" encoding="utf-8"?>
<Groups>
<Group>
<Id>1</Id>
...
0
votes
1answer
47 views
How to create object from an xml
How do you create an object by XElement? I can create a list, but I want a single object and not a list.
Here is my code:
XElement elem = XElement.Load(path);
var myList = from n in ...
1
vote
1answer
124 views
How to Get Element Names from XElement Using C#?
I have a Xml and i have to get the element name
<Data>
<Test key="G" modifier="control" />
<Test1 key="E" modifier="control" />
<Test3 />
<Test4 ...
1
vote
2answers
138 views
Enter line-breaks / carriage returns between the XAttributes in a XElement.ToString result
Is there no way to get line-breaks to appear between attributes in the XElement.ToString resultant xml string?
The following didn't work -- it kept the line-breaks, but put them below all the ...
0
votes
1answer
47 views
Hiding XElement nodes with no data
I am having trouble hiding XElements with no data.
If I have this code:
string missing = string.Empty;
XElement missingNodes = new XElement("TOPLEVEL",
new XElement("FIELD1", "VALUE1"),
new ...
0
votes
0answers
43 views
XElement constructor throw an exception only in release configuration
I have some class (on VB.NET):
Public Class XEntryFabric
Public Shared Function Parse(e As Entry) As XElement
Contract.Requires(Of ArgumentNullException)(e IsNot Nothing)
Dim xEntry = ...
1
vote
1answer
100 views
How to get XElement.ToString() to omit the space before the self-closing slash?
By default, a self-closing tag is ToString()ed by XElement as follows:
<element />
<element attrib="value" />
However, I would like it without the extra space, i.e.
<element/>
...
1
vote
2answers
91 views
Sorting an XDocument based on name of XElement
I have an XML file like this:
<file name="picture1.jpg"/>
<file name="file1.txt"/>
<folder name="subfolder">
<file name="picture2.jpg"/>
<file ...
1
vote
1answer
187 views
XElement.Elements(XName) method unable to read xml nodes having attributes
I am trying to filter the xmldata using Linq to Xml,the problem is i am not able to get the elements using XElement.Elements(Xname) method but when working with XElement.Desendents(Xname) method it ...
1
vote
0answers
33 views
XElement descendant not working \ XElement.Parse() [duplicate]
Here is the (simplified) XML I am currently working with:
<svg xmlns:xlink="http://www.w3.org/1999/xlink" width="242.359" height="557.669" id="svg2" version="1.1" ...
0
votes
2answers
69 views
Why can I not use an XPath on XML data with namespace?
I'm using the following code:
string testingXML = "<Policy><Activity xmlns=\"http://schemas.microsoft.com/netfx/2009/xaml/activities\"></Activity></Policy>";
...
1
vote
1answer
295 views
Set Root Namespace Prefix in an XDocument [duplicate]
I currently have:
XNamespace xmlns = "XSDName";<br>
XNamespace xsi = @"http://www.w3.org/2001/XMLSchema-instance";<br>
XNamespace schemaloc = @"XSDName XSDName.xsd";
XDocument xdoc = new ...
0
votes
1answer
97 views
XElement.Descendants () make it case-insensitive
XElement.Descendants () method accepts name of element to be find.
But it is case-sensitive is there any way to make it case-insensitive
0
votes
2answers
54 views
How to retrieve HTML from XElement without parent tag? [duplicate]
I have xml like this
XElement xe = "<root>
<mynode>
Text with link <a href=''>Test</a>
</mynode>
</root>";
public static string ...
0
votes
0answers
105 views
C# Windows Phone XML.Linq - populate static variables
I've recently jumped into C# & windows phone apps, and I'm currently working on a user login system. The login, registration etc works with some simple web-calls.
I want to create some global ...
0
votes
1answer
160 views
Convert XElement to JObject without JSON -or- Configure SerializeXNode for Empty Elements
I am using Json.NET's ability to convert XML to JSON and it works pretty well. I say "pretty well" because it will map empty XML nodes to null instead of {} (empty JSON object). However, because this ...
2
votes
4answers
271 views
How to cast to a List<IEnumerable<XElement>>
I was doing this first to return a particular set of nodes under the parent node that had id equal to 1 which worked fantastically.
IEnumerable<XElement> world1 = LevelData.root.
...
0
votes
1answer
94 views
Can I create an xml file at a specified location using XElement?
My windows application is creating a xml file and adding data to it using XElement. Is there any way i can create this file in D:/ directly rather than the project bin folder(default). I want a web ...
0
votes
2answers
233 views
How to prevent adding XML element if XElement is Null? [duplicate]
I have a simple XML document that looks like this:
<Person>
<LastName>LastName1</LastName>
<FirstName>FirstName1</FirstName>
...
0
votes
2answers
495 views
How to iterate through XElement Nodes of XDocument and add to another XElelement?
I have a XML document that looks like this:
<Person>
<LastName>LastName1</LastName>
<FirstName>FirstName1</FirstName>
...
1
vote
1answer
63 views
Search a value in XELement
I have a tree in form of XML that stores it in XELement variable.How I can search a value in All Nodes in this XML and if it exists return true?








