Tagged Questions
The system.xml tag has no wiki summary.
20
votes
4answers
15k views
Why did I get an error with my XmlSerializer?
I made a couple of changes to my working app and started getting the following error at this line of code.
Dim Deserializer As New Serialization.XmlSerializer(GetType(Groups))
And here is the ...
2
votes
1answer
42 views
Custom module conditional configuration optons
I would like to programmatically enable or disable specific options for a custom module on the administration panel depending on the status of a select. For example, if I had a Yes/No select ...
1
vote
3answers
65 views
Attribute vs Child node
I'm new to XML and am wondering when I should use a Attribute,
and when I should use a Child node.
My guess is I should use an attribute if I want to use that field like an index.
For example, I'm ...
1
vote
1answer
295 views
What assembly does XmlDocument live in, and how do I use it?
I have the following code:
using System.Xml;
namespace MyApp {
public class Foo : IBar {
public void SomeCallback(object sender, CallbackEventArgs e) {
string s = e.Result;
...
1
vote
2answers
735 views
Why doesn't XElement have a GetAttributeValue method?
Sometimes I'd like to know the reasoning of certain API changes. Since google hasn't helped me with this question, maybe stackoverflow can. Why did Microsoft choose to remove the GetAttribute helper ...
1
vote
1answer
52 views
Method definitions for methods contained in System.Xml.XMLReader
I haven't been able to find a reference that defines what these methods are made up of.
I kind of get what these methods do and what arguments they take, but I'm hoping to find out how they work.
...
1
vote
1answer
509 views
What is an intuitive way to move an XmlNode from one XmlDocument to another?
I have two XmlDocuments and I would like to move an XmlNode selected from one of the documents and append it at a particular location in the other document.
The naively intuitive approach of simply ...
0
votes
1answer
40 views
Xml loaded dataset is missing a table
When I read an xml file into a dataset, if the root node has more than one of each child tag, it doesn't create a table for the root node. Why is this? Is there any way to get it to generate the root ...
0
votes
3answers
285 views
System.Xml.XmlTextWriter.WriteStartDocument()
What does this method do, and why is it necessary?
The "go to definition" option leads me to a function containing all comments, here's what it says about its purpose
//Writes the XML declaration ...
0
votes
2answers
1k views
MissingMethodException when running application on different computer
I have a problem where I compiled my application on Visual Studio 2010 while targetting the .NET Framework 3.5, deployed it to a client server, only to find it gives me the following error:
...
0
votes
2answers
312 views
Windows Forms app, exception on start-up: Could not load System.Xml
Update: I have tried using fuslogvw.exe to get logs. But what exactly am I looking for? Sadly, the logs are in Danish which is extremely annoying (Apparently someone thought that translating ...
0
votes
3answers
639 views
how to use system.xml.dll in delphi
I downloaded the system.xml.dll, then added it to my Delphi code as following:
uses system.xml;
etc...
When I try to compile the project, the following message appears:
file not found ...
0
votes
2answers
613 views
XmlDocument - ParentNode and DocumentType are null
In .NET what does it mean if you LoadXml() into the XmlDocument object and then ParentNode and DocumentType are null?
Also, I get this as the answer to xmldoc.FirstChild.Value:
version="1.0" ...