Tagged Questions
The xmlwriter tag has no wiki summary.
17
votes
4answers
9k 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);
...
9
votes
4answers
827 views
Proper name space managment in .NET XmlWriter
I use .NET XML technologies quite extensively on my work. One of the things the I like very much is the XSLT engine, more precisely the extensibility of it. However there one little piece which keeps ...
6
votes
3answers
6k views
Possible to write XML to memory with XmlWriter?
I am creating an ASHX that returns XML however it expects a path when I do
XmlWriter writer = XmlWriter.Create(returnXML, settings)
But returnXML is just an empty string right now (guess that ...
5
votes
2answers
1k views
XMLWriter vs XMLDictionaryWriter
What's the difference between XMLWriter and XMLDictionaryWriter? In which cases is each one generally used?
4
votes
3answers
356 views
Server A using xmlreader to read XML from xmlwriter on server B
I have two servers
Server A reads http://www.some-url.com/xmlwriter_src.php using
$reader = new XMLReader();
$reader->open('http://www.some-url.com/xmlwriter_src.php');
while ...
4
votes
5answers
661 views
XmlWriter writing empty xmlns
I'm using the following code to initialise an XmlDocument
XmlDocument moDocument = new XmlDocument();
moDocument.AppendChild(moDocument.CreateXmlDeclaration("1.0", "UTF-8", null));
...
3
votes
2answers
112 views
how to create an xml using xml writer without declaration element
I am using XmlWriter.Create() to get a writer instance then write the XML, but the result has the <?xml version="1.0" encoding="utf-16" ?>, how do I tell my xml writer do not produce it?
3
votes
1answer
117 views
How to control prefixes of namespaces in XML document generated by XmlWriter - generated XAML with x:Type markup extension
I am trying to generate XAML from XElements.
<Style xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation">
<Style.BasedOn>
<StaticResource>
...
3
votes
2answers
3k views
Writing XMLDocument to file with specific newline character (c#)
I have an XMLDocument that I have read in from file. The file is Unicode, and has the newline character '\n'. When I write the XMLDocument back out, it has the newline characters '\r\n'.
Here is the ...
3
votes
4answers
399 views
XML Writer question
I'm using XML Writer to create a log of some important events in my application.
Currently it all works fine assuming that the application is correctly closed, but if it isnt, the file isnt closed ...
3
votes
2answers
494 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" ...
3
votes
5answers
2k views
XmlWriter encoding issues
I have the following code:
MemoryStream ms = new MemoryStream();
XmlWriter w = XmlWriter.Create(ms);
w.WriteStartDocument(true);
w.WriteStartElement("data");
...
3
votes
3answers
565 views
What's the best way to synchronize XmlWriter access to a file to prevent IOExceptions?
There are multiple places in an application which call XmlWriter.Create on the same file, all accessed through the following function. When one calls while another is still writing, I get an ...
3
votes
2answers
2k views
How to put an encoding attribute to xml other that utf-16 with XmlWriter?
I've got a function creating some XmlDocument:
public string CreateOutputXmlString(ICollection<Field> fields)
{
XmlWriterSettings settings = new XmlWriterSettings();
...
2
votes
3answers
42 views
How can I select a xml element based on some attribute and write it back complete in another file
I'm reading an svg/xml with XmlTextReader and I want to write just some of its elements back in a new svg/xml file
<svg>
<rect x="135.7" y="537.4" fill="none" stroke="#000000" ...
2
votes
1answer
266 views
XmlWriter inserting spaces when xml:space=preserve
Given this code (C#, .NET 3.5 SP1):
var doc = new XmlDocument();
doc.LoadXml("<?xml version=\"1.0\"?><root>"
+ "<value xml:space=\"preserve\">"
+ ...
2
votes
1answer
236 views
XmlWriter - Writing xsi:nil=true attribute
I have an issue with an InfoPath 2010 form, that has some code behind it. The purpose of my form is to collect data from a user, and using the answers provided, auto populate a number of required ...
2
votes
2answers
563 views
c# using + XmlWriter.Create = “Cannot access a closed Stream.”
Why this works:
using (var ms = new MemoryStream())
{
using (var dummy = new StreamWriter(ms))
{
var sw = new StreamWriter(ms);
sw.WriteLine("Hello World");
...
2
votes
1answer
973 views
Output XMLWriter to XML file
I am currently using XMLWriter to display an xml file. However I would like to know how I could export the output to a .xml file.
My current code is:
$res = mysql_query($sql);
$xml = new ...
2
votes
2answers
1k views
string escape into XML-Attribute
I had a look at string escape into XML and found it very useful.
I would like to do a similar thing: Escape a string to be used in an XML-Attribute.
The string may contain \r\n.
The XmlWriter class ...
2
votes
4answers
1k views
How to write XML files?
I want to write a not so complicated but large file within my app and be able to send it by mail (using MFMailComposeViewController)
Since NSXMLElement and related classes are not ported to iPhone SDK ...
2
votes
2answers
162 views
Is there an XmlWriter that writes a colorful HTML-formatted output for displaying XML in a webpage?
I've got a bit of XML I want to display on my ASP.NET website as-is (for debugging purposes), and it would be nice if it was colored. This should be easy to achieve with the right kind of XmlWriter, ...
2
votes
1answer
433 views
Copying an xml file with inserting new elements in a specific location- C#
Hi I want to copy an xml file and insert in a specific element locaiton some more elements;
What is the best and easiest way doing this. I can use xmlReader read elements and write one by one ...
2
votes
2answers
1k views
I need multiple xmlns elements in an element with the XmWriter
I'm trying to convert a xml document from one format to another and while doing this I've found that I need to insert multiple xmlns declarations to the root element.
Example:
<?xml version="1.0" ...
2
votes
3answers
1k views
Removing version from xml file
I am creating a Xml like format using XmlWriter. But in the output there is version information also.
<?xml version="1.0" encoding="utf-8"?>
I don't need this in my file. How can I do that? ...
2
votes
2answers
499 views
Tracking namespace declarations with XMLWriter
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 ...
2
votes
2answers
3k views
Creating an XML Element object from an XML Writer in C#
I'm writing a Windows service in C#. I've got an XmlWriter which is contains the output of an XSLT transformation. I need to get the XML into an XMLElement object to pass to a web service. What is the ...
1
vote
2answers
51 views
Can we force XmlWriter to issue <my-tag></my-tag> rather than <my-tag/>?
By default,
someXmlWriter.WriteElementString("my-tag", someString);
produces <my-tag />
I looked around XmlWriterSettings class for possible options that would force the writer to produce ...
1
vote
1answer
27 views
How to specify the custom formatting on the XmlWriter
After executing Serialize my XML looks like
<Prisinfo>
<Enhet>kr</Enhet>
<Mengde>4.000000</Mengde>
- <Delmengder>
- <Delmengde>
...
1
vote
0answers
49 views
InfoPath 2010: Trouble programmatically adding rows to a repeating table/section that is nested within a repeating table
I have a repeating table nested within a repeating table. The nested table contains 5 columns, 1 for the year, 4 for the different quarters (financial). I need to dynamically add rows to the nested ...
1
vote
1answer
37 views
How do I rename xmlns=“” with WriteStartElement?
I'm attempting to make an XML that's going to be parsed by an XNA content reader. I'm using XMLWriter, and the format is supposed to be:
<XNAContent>
<Assest Type="namespace">
...
1
vote
2answers
80 views
XML Non Breaking White Space
I think the cause of my woes at present is the non-breaking white space.
It appears some nasty characters have found their way into our MySQL database from our back office systems. So as I'm trying ...
1
vote
1answer
76 views
How to write boolean attribute (specified - not specified) with XmlWriter?
Is there any possible way to write an attribute without value:
<element specified/>
I believe I can do it with:
writer.WriteRaw("<element specified/>")
But is there is any way to do ...
1
vote
1answer
176 views
XmlWriterSettings, XmlTextWriter, XmlWriter not formatting output?! No new lines, no indentation
Using .Net 3.5 SP1 in VS2008 I have a XmlDocument and have tried writing it to file:
using (XmlTextWriter tw = new XmlTextWriter(outXmlFileName, System.Text.Encoding.UTF8))
{
tw.Formatting = ...
1
vote
3answers
128 views
Writing formatted XML with XmlWriter
I'm trying to write to an XML file to the isolated storage but I would like to format it like this:-
<SampleData>
<Item Property1="AliquaXX" />
<Item Property1="Integer" />
...
1
vote
2answers
140 views
Outputting XML to a browser from a Perl CGI script?
I've got a perl CGI script running on an Apache server. The script is, among other things, supposed to display some XML that is generated from input. Using the XML::Writer module, I've created a ...
1
vote
1answer
85 views
How can I coerce XmlWriter to handle namespaces correctly?
I want to use XmlWriter to write something like this (all in one namespace):
<Root xmlns="http://tempuri.org/nsA">
<Child attr="val" />
</Root>
but the closest I can seem to get ...
1
vote
3answers
145 views
which XML editor to use for speech recognition grammar specifications (SRGS)
Is it best to use a particular editor to write XML or will any editor do?
In particular I will be using XML to write Speech Recognition Grammar Specifications (SRGS).
1
vote
1answer
247 views
How to get a Stream from an XMLWriter?
An instance of System.Xml.XmlWriter is writing to an underlying Stream right ?(regardless of what the specific implementation of the XmlWriter is)
So how come there are no methods available for a ...
1
vote
2answers
190 views
Merging multiple existence of nodes in under one parent node using C#
I have an XML having multiple <Page Pageid="1"> nodes. All such nodes have <Para Paraid="1"> nodes under them. I want to do make single occurence of <Page> node such that all ...
1
vote
2answers
643 views
Output XML to ASP.NET TextBox with formatting using XmlWriter?
I am building an XML string programatically using the XmlWriter ...
sb = New StringBuilder()
writer = XmlWriter.Create(sb)
writer.WriteStartDocument()
writer.WriteStartElement("root")
...
1
vote
1answer
226 views
Reading a template and creating a new XML file using the read template
I'm attempting to read a XML template, code below, and put this content to a new XML file.
<?xml version="1.0" encoding="utf-8"?>
<Format>
<Name title=""></Name>
...
1
vote
2answers
374 views
Generate trx file through code
I want to manually generate TRX file through for my code.
Is there any program which will be used for this purpose.
If not then how to do it?
1
vote
2answers
233 views
output or write to a xml file?
$fp = fopen('data.txt', 'r');
$xml = new SimpleXMLElement('<allproperty></allproperty>');
while ($line = fgetcsv($fp)) {
if (count($line) < 4) continue; // skip lines that aren't ...
1
vote
2answers
581 views
C# .NET XMLWriter/Reader problem
I've been having problems writing XML and reading it in. I have a handwritten XML that gets read in fine, but after I write the XML it acts funny.
The output of the WriteXML: ...
1
vote
2answers
456 views
How to read/write complex object with XmlWriter/XmlReader
I've been trying to find an easy way to write XML using the XmlReader/XmlWriter. I don't really like using the interface "IXmlSerializable", but I've got no choice for some of my dataclass.
Anyway, ...
1
vote
2answers
461 views
2 problems with VB Net's XMLWriter
Im writing stuff to an XML file using VB .net´s XmlTextWriter
The code to start the xmlwriter is:
Dim XMLobj As Xml.XmlTextWriter
Dim enc As System.Text.Encoding
enc = ...
1
vote
1answer
136 views
Dispose of an XmlWriter without sending outstanding end elements
I'm using an XmlWriter to send an XMPP (Jingle) stream. The XMPP protocol replaces the an XML stream when it negotiates TLS which means the XML ends up like:
<stream>
<features>
...
...
1
vote
1answer
334 views
How to write out an EntityReference (e.g. ) to an XmlWriter, read by XmlNodeReader?
Background
I'm reading and writing an XML document using reader and writer, with filtering logic in between the read and write operations to determine which parts read should be written back out ...
1
vote
1answer
613 views
Serialization of object to xml and string without \r\n special characters
I want to serialize my object to xml and then to a string.
public class MyObject
{
[XmlElement]
public string Name
[XmlElement]
public string Location;
}
I want to obtain a ...