Tagged Questions
0
votes
2answers
29 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>
...
0
votes
2answers
41 views
Child Nodes in XML File
I am trying to get the child nodes in my xml file and print it out..however i cannot. It is just printing one element instead of all. please help.
XDocument doc = ...
1
vote
3answers
49 views
Get nodes from XML using LINQ in C#
My code is as follows:
XDocument xmlDoc = XDocument.Load("myXML.xml");
var data = from items in xmlDoc.Root.Elements("category")
where items.Attribute("value").Value == ...
1
vote
2answers
41 views
Get Value from XML
Best way to get the URL from that string?
string text = @"<INMobileCRMConfig>
<WebserviceURL>
https://179.18.0.30:8200/INPhone/INPhoneMessages/
...
0
votes
0answers
18 views
What type of lock used by xDocument.load method at time of loading xml file?
I'm having application in VB.net which is using LINQ and try to save data on local machine which reduce performance.
What I believe is that because of the sync. application constantly write data on ...
1
vote
1answer
43 views
Extracting XML data, modifying it and storing in excel file
I am new to asp.net. I have an xml file as follows:
<?xml version="1.0" encoding="iso-8859-1" ?>
<newsitem itemid="10000" id="root" date="1996-08-22" xml:lang="en">
<title>CHINA: ...
0
votes
2answers
36 views
How do you sort an XDocument parent node based its child?
In c# I am trying to sort an XDocument using OrderByDesending. The goal is to read one of the child nodes which contains a date\time stamp and reorder the parent nodes.
I load the XML from a saved ...
2
votes
1answer
58 views
Trying to read xml file with LINQ
I am trying to get the variable whitch is an integer, but it gives me a string.
XDocument xmlDoc = XDocument.Load(path);
var test = xmlDoc.Descendants("Variables").Elements("nom").Select(e ...
0
votes
1answer
57 views
Appending/Listing LINQ to XML data
I'm currently writing a function to save and read data to/from and XML document through
LINQ. Currently I can write the document just fine, but if I go to add data to an existing item, it simply adds ...
1
vote
2answers
30 views
Accessing and getting response from API call
I am checking out the namecheap api and am having some difficulty getting started. I am trying to access the api after setting up the sandbox account etc and a sample response is in XML format:
...
2
votes
2answers
31 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", ...
0
votes
1answer
64 views
List Value to XML conversion using LINQ
I have data in this format in a list
ItemA LoaderA ConfigA 30
ItemA LoaderA ConfigB Default=180
ItemA LoaderA ConfigC 20
ItemB LoaderA ConfigA 30
ItemB LoaderA ConfigB Default=120
ItemB ...
2
votes
1answer
45 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
38 views
Linq XElement changes Value formatting in foreach
This seems like a strange one (unless I am missing something obvious). I have to store this string:
{TestField1:=TestAltField1}{TestField2:=TestAltField2}
in an XML Value field resulting in ...
0
votes
3answers
38 views
Difficulty appending to XML file using Linq
I have an XML Document that looks like
<Settings>
<Config>
<type>stuff</type>
<length>stuff</length>
<ID>1</ID>
...
-5
votes
1answer
59 views
Update xml node data, how [duplicate]
I'd like to make update to xml node data, I have the following xml node
<categories>
<category>
<id>1</id>
<name>Computer</name>
...
1
vote
1answer
55 views
Querying attribute values with LINQ XML
I am new to querying XML files in C#. Any help would be appreciated. Thanks in advance..
I have this XML file:
<Point>
<Statement>
<Type />
<FullCondtion ...
-1
votes
5answers
98 views
How can I get single node data using linq
I have the following xml file
<categories>
<category>
<id>1</id>
<name>Computer</name>
<description>Information tech.</description>
...
0
votes
1answer
53 views
Search results xml, c # - Windows Application Store
Good day, I am creating an app bible, I'm having trouble searching the verse ("v"). I have created the whole structure can filter the book ("b"), then it loads a list of all the chapters ("c"), when ...
1
vote
0answers
47 views
How to exclude already existing items from dropdownlist? The values are populated based on some condition in xml
In my web application project I have a LinkButton and when clicking it a popup page AddControlsPopup.aspx will come .
On this page I have to fill ddlValues Dropdownlist from xml with some ...
0
votes
1answer
73 views
Trying to bind GridView from Linq, not sure how to extract data I need
So I have a DataSet I'm treating as an IEnumerable, and then applying a LINQ expression which gathers modulo groups into a var g. Here is the code-behind...
protected void Page_Load(object ...
1
vote
1answer
29 views
how to insert nodes in xml string file
i have an XML string .that contain elements like message format, attribute collection, input, output. i want to add all the nodes and its value from output element to attribute collection element .for ...
0
votes
0answers
81 views
Trying to bind GridView from Linq
So I have a DataSet which is populated from an XML file, from which I'm trying to populate a GridView using LINQ. But the GridView is rendering empty. Here is the code-behind...
protected void ...
0
votes
1answer
57 views
Why am I getting Null Referenfe exception while trying to read data from XML file?
I have a XML file names Customerx.xml. It has the parent tag as . It has many .
My customer class is defined as:
public class Customer
{
private List<Customer> customerList;
public ...
0
votes
1answer
42 views
Storing array in XML/reading it with LINQ
I am trying to get 2D array representing distances between specific cities using LINQ. It is up to me to pick proper XML representation of the problem. At first, I used MatLAB-style array to represent ...
0
votes
2answers
137 views
Generic way of creating XML files in C#
I am trying to create a class which saves/reads multiple XML files using LINQ and Genertics.
I am looking for generic way of saving XMl files of multiple type (i.e data in them)
Every XML file will ...
1
vote
1answer
52 views
XML parsing using LINQ: what is the best way to get value of nearby node
I am trying to parse the following XML:
<bs:School>
<bs:Class number="1">
<bs:Student>
<bs:Gender>Male</bs:Gender>
...
0
votes
1answer
79 views
Linq to XML dynamic where query building
I have searched a while and found many great answers to this question but each solution errors when I try to mimick the code in my solution.
I am passing values to a function that should
Establish ...
0
votes
1answer
32 views
Reading XML attribute value based on another attribute
I am trying to retrevie a error message based on the errorcode i pass.How can i do that using linq?
Here is my xml document layout
<?xml version="1.0" encoding="utf-8" ?>
<errors>
...
0
votes
2answers
88 views
How to get value of child node from XDocument
Need to get value of child node from XDocument using linq
<root>
<Cust>
<ACTNumber>1234</ACTNumber>
<Address>
<Street></Street>
...
0
votes
1answer
94 views
How to Read XElement contents containing Sharepoint List Structure?
I want to bind the MultipleCheckbox items from Choice Column of sharepoint List to asp.net CheckBoxListItem using c#.
I am retriving information of List using XELEMENT as:
In .cs file:
XElement ...
0
votes
1answer
30 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" ...
-2
votes
0answers
21 views
C# code to update the values from Source xml to Destination.xml file
I have two xml documents.I want to update the values in second xml document by reading the first xml document using C#.Any idea?
-3
votes
2answers
109 views
Find and replace a part of a string from an xml file with c# [closed]
I have an XML document similar to this:
<Math>
<Statement>
<FullExpression>varThree = varOne + varTwo</FullExpression>
<ExpressionList>
...
4
votes
3answers
123 views
How to parse XML data into the properties of a custom C# class?
Setup
I have this in my Main() function.
List<Token> tokens = new List<Token>();
string path = @"\(some directories)\tokens.xml";
XDocument doc = XDocument.Load(path);
I have this ...
1
vote
1answer
38 views
Return HttpResponseMessage with XML data
I've created a WebAPI using .NET. The API reads/writes data from an xml file. I have the following code and it returns the matching elements without a root element. How do I make it return with root?
...
4
votes
1answer
72 views
How to remove a List string element if it contains a string element from another List?
Setup
I have these three lists.
List<List<string>> tokens = new List<string>();
List<string> token = new List<string>();
List<string> sets = new List<string();
...
0
votes
1answer
18 views
Transform server status data to running 24 hour tabular format
I need to display running server status, in an asp.net grid view using c#, for the last 24 hours in 5 minute increments. The data is in SQL Server records of the form: HostName, RecordDate, ...
0
votes
1answer
64 views
Linq XML - getting distinct values with the combination of parent node & child node
I've made a Linq statement wish recieves all nodes of a XML file.
foreach (var node in epaXmlLoad.Root.Descendants()
.DescendantNodes()
...
0
votes
2answers
31 views
Linq XML complex select (3 levels)
I need to get the exact parameter ConnectionString from the MAINDB config section from ServerConfig.
<?xml version="1.0" encoding="utf-8" ?>
<ServerConfig>
<config ...
0
votes
2answers
125 views
Split the String, If it exceeds the specified length
I am generating a XML format file using String Builder. the file will look something like this :-
StringBuilder strBldr = new StringBuilder();
strBldr.AppendLine("<Root>");
...
0
votes
3answers
58 views
LINQ-XML How should I get the error XML node with given error attribute
Here is the XML
Get this ResultCode attribute, if error then look for all product's child nodes
<PRODUCT Action="Result" ResultCode="ERROR" ResultText="An error occurred in a child ...
6
votes
1answer
100 views
XDocument.Save() add unwanted namespace on each XElement
I have the following XML :
<?xml version="1.0" encoding="UTF-8"?>
<tt xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://www.w3.org/ns/ttml"
...
1
vote
1answer
111 views
How to read XML using Linq
I have a program that queries a database, and reports the results. Here is my query:
Select Service, Total
From Services
Where dtcreated between @startdate and @enddate
The dataset named dataset ...
2
votes
7answers
83 views
read xml attributes
i'm confused... nothing is on my mind anymore... i need to read each attribute from this kind of xmldocument
<party_list>
<party currency="BAM" id="330-159210014235851" />
<party ...
1
vote
1answer
34 views
Linq to XML - From table to XDocument
I would like to generate an XDocument from my table (the structure is different) but I keep getting the following error :
LINQ to Entities does not recognize the method 'System.String ToString()' ...
0
votes
2answers
55 views
How can I sort my string array from .GetFiles() in order of date last modified in asp.net-webpages?
I have seen a really close example here:
Sorting Files by date
But I am new to LINQ and couldn't get it to work (not sure I understand the DirectoryInfo or FileInfo classes).
Here are the necessary ...
0
votes
1answer
27 views
Use LINQ to group by multiple XML nodes
<myDocument>
<country code="US">
<region code="CA">
<city code="Los Angeles">
<value>a</value>
...
1
vote
5answers
126 views
How to parse this xml in c#?
I want to parse an xml file into a dictionary the Dictionary looks like this
"250", 0.110050251256281
"150", 0.810050256425628
"850", 0.701005025125628
"550", 0.910050251256281
How can i parse the ...
-1
votes
2answers
62 views
Writing XML in loop c#
How would i write the xml out like
<?xml version="1.0" encoding="UTF-8"?>
<calibration>
<ZoomLevel 250>0.0100502512562814</ZoomLevel 250>
<ZoomLevel ...


