0
votes
1answer
29 views
Efficent way of retrieveing HttpWebResponse and putting it in XDocument
There is a local service from which I need to consume a generated XML Document Stream. Though the end point is not a REST service per se. I wanted to be sure the method I've outlined below is the most …
2
votes
1answer
40 views
how to load a XDocument when the xml is in a string variable?
How do I load an XDocument when the xml is in a string variable?
0
votes
1answer
25 views
Processing XML from a Table (with one line in one record each)
IBM only provides a database connection to the iSeries, thus I have to work around this issue with using a table to pass data from the iSeries to .NET. The RPGLE program creates an XML document in a …
2
votes
2answers
95 views
How to query an XDocument with LINQ when elements have a colon in their name?
I am trying to use LINQ to XML in an with the XDocument object. How do you query the result element in the example below?
<serv:header>
<serv:response>
…
6
votes
4answers
430 views
XDocument or XMLDocument
Hi everyone,
I am now learning XMLDocument but I've just ran into XDocument and when I try to search the difference or benefits of them I can't find something useful, could you please tell me why you …
0
votes
1answer
22 views
Remove all empty elements using xlinq
I'm doing some transforms using xlinq and some of those transforms can result in leaving empty elements in the document.
Once I am done all of those transforms, how can I query an xdocument for all …
0
votes
2answers
86 views
Returning Element value deep inside XDocument
I have the following XML and I have been trying Descendents().Descendents().Descendents to retrieve an element value but I can't get it to work.
I want to return the first value found in the first …
0
votes
1answer
57 views
How to keep in session XML-based objects?
I'm receiving data from web-services in XML and I'm using that data via objects, build upon received XML. So, sometimes I need to store such user-specific objects between requests in session. I know …
0
votes
3answers
249 views
Add HTML 5 doctype to XDocument (.NET)
When creating a doctype for an System.Xml.Linq.XDocument like this:
doc.AddFirst(new XDocumentType("html", null, null, null));
The resulting saved XML file starts with:
<!DOCTYPE html >
…
3
votes
2answers
215 views
How do I add a document type to an XDocument?
I have an existing XDocument object that I would like to add an XML doctype to. For example:
XDocument doc = XDocument.Parse("<a>test</a>");
I can create an XDocumentType using:
…
4
votes
2answers
429 views
XDocument/Linq concatenate attribute values as comma separated list.
If I have the following xml:
XDocument xDocument = new XDocument(
new XElement("RootElement",
new XElement("ChildElement",
new …
0
votes
0answers
21 views
Embedding an XDocument within XAML
How can I embed an XDocument within XAML? I've got the following but Visual Studio won't let me put any XML in the XDocument:
<Window
…
1
vote
2answers
72 views
Can I assign a BaseUri to an XDocument?
When I load an XML document from disk into an XDocument, that XDocument has a ready-only property BaseUri that contains the original XML document's location on disk. In other words,
XDocument doc = …
1
vote
3answers
325 views
Problem with XDocument (C#)
what is wrong with this code
XDocument xDocument = new XDocument();
for (int i = 0; i < 5; i++)
{
xDocument.Element("PlayerCodes").Add(
new XElement("PlayerCode", i.ToString())
);
}
…
2
votes
1answer
213 views
Update XElement value in XDocument?
I have a XDocument with XElements such as this:
<PageContent>
<Text>My Text</Text>
<Image>image.jpg</Image>
</PageContent>
I want to find the Text element …
