Tagged Questions

0
votes
2answers
27 views

Adding multiple namespace declarations in XmlWriter

I am trying to write out the following element using XmlWriter <kml xmlns="http://www.opengis.net/kml/2.2" xmlns:gx="http://www.google.com/kml/ext/2.2" xmlns:kml="http://www.opengis.net/kml/2.2" …
0
votes
1answer
49 views

How to write System.Xml.Linq.XElement using XmlWriter to a stream.

Dear ladies and sirs. I have an XElement instance and I wish to write to a stream using XmlWriter class. Why? Well, one of the configuration settings defines whether to use binary Xml or not. Based …
1
vote
2answers
32 views

Combining XmlWriter objects?

The way my application is structured, each component generates output as XML and returns an XmlWriter object. Before rendering the final output to the page, I combine all XML and perform an XSL …
0
votes
3answers
47 views

Cannot use space in XMLElementName

Hi, I am using XMLwriter to create HTML which works well, but now I need to place image tag but I am not able to do that - it still reports I cannot use ' ' in the element name. Please advice hwo to …
0
votes
2answers
19 views

XMLWriter for HTML creation - how to add simple non-pair tags?

Hi, I was advised to use XMLwriter to build HTML documents in order to display them in webbrowser object. Creating doctype and startelements like HTML,BODY is OK..but I am experiencing 2 main …
0
votes
2answers
90 views

How can i remove BOM from XmlTextWriter using C#

Hi, i need to remove the BOM from an XML file that is being created. I have tried using the new UTF8Encoding(false) method but it doesnt work. Here is the code i have: XmlDocument xmlDoc = new …
0
votes
2answers
92 views

XmlWriter Not Creating New Element in VB.net

I'm writing out an XML file using VB.net. When I try to create another element to be written past the first, it errors out saying: "Token StartElement in state EndRootElement would result in an …
0
votes
1answer
66 views

How do you get an XmlWriter to write an HTML tag with xmlns and xml:lang?

I am using an XmlWriter to render HTML. How can I get an XmlWriter to emit a proper tag that looks like this? <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en"> here is what I have so …
0
votes
2answers
45 views

Are XmlMtomReader and XmlMtomWriter fully implemented in Mono project?

I'm working on a cross-platform solution currently. The solution uses XmlMtomReader and XmlMtomWriter from .NET framework 3.0. Now i need to know if these two classes (and all the nessasary …
1
vote
4answers
411 views

How to create a XmlDocument using XmlWriter in .NET?

Many .NET functions use XmlWriter to output/generate xml. Outputting to a file/string/memory is a very operation: XmlWriter xw = XmlWriter.Create(PutYourStreamFileWriterEtcHere); …
1
vote
7answers
334 views

How to format an XML with closing nodes and tags on a new line?

I'm modifying some .vcrpoj files in .NET but when I save them the formatting changes (which wrecks havoc with my diff tool), the original files look like this: <VisualStudioProject …
0
votes
2answers
485 views

VB.NET XMLWriter: How to change what’s in the header?

I have a requirement to make an XML file - and the partner is rather sticky about the header. Apparently, the header must be exactly this: <?xml version="1.0"?> But whenever I create an XML …
1
vote
5answers
357 views

XmlWriter encoding issues

I have the following code: MemoryStream ms = new MemoryStream(); XmlWriter w = XmlWriter.Create(ms); w.WriteStartDocument(true); w.WriteStartElement("data"); …
0
votes
1answer
406 views

EventBinding in a codebehind generated DataTemplate

Hi there, lets begin with the scenario: I have an ItemsControl inside a UserControl. In this ItemsControl I have a dynamicly created DataTemplate which is created and added in codebehind. As there …
0
votes
1answer
101 views

Tracking namespace declarations with XMLWriter

Hi, I'm working on an XML webservice (in PHP!), and in order to do things 'right', I want to use XMLWriter instead of just concatinating strings and hoping for the best. I'm using XML namespaces …

1 2 next
15 30 50 per page