The xmltextwriter tag has no wiki summary.
0
votes
0answers
11 views
error saving existing xml after updating node
I am trying to update an existing xml post but it fails when trying to save after the update with xmlexception illegal characters message. Here is my code:
Dim xdoc As New XmlDocument
...
0
votes
3answers
52 views
Create XML in memory and pass to another method to transform via XSLT
This is what I'm trying to do. I'm sure the solution is simple, I just haven't found it yet (and believe me I've been trying).
I have an object that I want to use to create XML data. (I'm using an ...
0
votes
2answers
60 views
is it possibile to read an XML file by a relative URL with XMLTextReader in ASP.NET IIS7.5
Is it possible in ASP.NET (not MVC) in IIS7.5 on Windows Server 2008R2 to read an XML file from a subfolder beneath the web app using a relative URL?
Something like:
Dim rdr As XmlTextReader
...
0
votes
0answers
19 views
xmltextwriter file lock IIS 6
I'm using this, and still I cannot delete the file in Windows explorer after it has been created by an MVC .NET 4.0 web site running in IIS 6
using (XmlTextWriter writer = new ...
1
vote
2answers
22 views
Using XmlTextWriter with iTunes podcast
I have the following code generating an XML podcast file for iTunes podcast:
Dim writer As New XmlTextWriter("c:\jdir\test.xml", System.Text.Encoding.UTF8)
writer.WriteStartDocument(True)
...
0
votes
2answers
27 views
How to use XmlTextWriter Element?
I have the following XML:
<Account>
<nr>6134</nr>
<name>Summ</name>
<Accounting>
<income>200</income>
</Accounting>
...
2
votes
3answers
81 views
How to Write XML in c#?
<Account nr="401" name="Wasser/Abwasser" income="0.00" expenditure="1,310.74" saldo="-1,310.74" resultText="Es wurden ausgegeben">
<Accounting date="15.02." refNr="....." ...
0
votes
3answers
190 views
How to write '&' in xml?
I am using xmlTextWriter to create the xml.
writer.WriteStartElement("book");
writer.WriteAttributeString("author", "j.k.rowling");
writer.WriteAttributeString("year", "1990");
...
0
votes
1answer
70 views
xml white space issue using c#
I am creating xml file using below code problem is when there is extra spaces in sentence or content this code is converting it into single space how to handle this
using System;
using ...
0
votes
1answer
238 views
XmlTextWriter serialize Object to XML element
I would like to perform object serialization to only one branch in an existing XML file. While reading by using:
RiskConfiguration AnObject;
XmlSerializer Xml_Serializer = new ...
1
vote
0answers
181 views
Write correct DataGridView cell backcolour
I have a DataGridView in which certain cells change color to red on click and back to white on click again. The problem I am having is that if I haven't clicked on a cell, the code thinks the cell's ...
2
votes
1answer
98 views
How do I generate " in XML from C#
I'm using XmlTextWriter to generate XML from a C# app. The initial input will be in this format, 1" , but I can replace it with whatever. I need to end up with 1" but I keep getting ...
0
votes
1answer
287 views
xmlTextWriter does not save the XML file to bin folder
I am trying to create an XML file for storing some info from a class. I gave the path as a const set to Info.xml. but the XMLTextWriter is not saving the XML file to bin(debug/release) folder, rather ...
0
votes
0answers
113 views
Populate part of XML file from query (using XmlTextWriter)
I'm currently using XmlTextWriter to populate an XML file. One part of the file is populated with static content (hard coded) but I need to populate another part of the XML file with results from a ...
0
votes
1answer
202 views
SSIS: Add schema to xml file
I need to pull data from a database and create an xml file via ssis. So far, I've created a script that can successfully create an xml file (using XmlTextWriter), listing all necessary data, however, ...
1
vote
1answer
161 views
Clear all content in XmlTextWriter and StringWriter
I want to clear all of content in XmlTextWriter and StringWriter. Flush() didn't work out.
XmlDocument doc = new XmlDocument();
StringWriter sw = new StringWriter();
XmlTextWriter xw = new ...
0
votes
1answer
329 views
How to write a string into a xml file on c#?
I've created a xml file using c#.
XmlTextWriter writer = new XmlTextWriter("Product.xml", System.Text.Encoding.UTF8);
writer.WriteStartDocument(true);
writer.Formatting = Formatting.Indented;
...
0
votes
1answer
1k views
Exporting XmlTextWriter output to string using vb.net
I would like to export(convert) XmlTextWriter output data to string variable.
My code as follows :
'' write data as xml
Dim objX As New XmlTextWriter(Response.OutputStream, ...
0
votes
3answers
152 views
xmltextwriter path in c#
I am trying to use xmltextwriter and assign a path which needs to use for writing.
I am trying this:
string path = "~/Uploads/site/" + Current.User.Id + .kml";
...
0
votes
0answers
187 views
How to parse hierarchial XML from Excel sheet
I am trying to parse an XML file as provided below with C# and XmlTextWriter
Example:
<ChessBoard>
<King>
<Bishop>
<Soldier/>
</Bishop>
</King>
...
1
vote
1answer
229 views
C# WriteDocType generates an incorrect PList doctype
Consider the following C# code:
XmlTextWriter writer = new XmlTextWriter(pathFichier, null);
writer.WriteStartDocument();
writer.WriteDocType("plist", "-//Apple//DTD PLIST 1.0//EN", ...
0
votes
0answers
840 views
C# Using XmlTextWriter, XmlTextReader with multiple elements
I use with C# 2008 Net Framework 3.5 the System.Xml Namespace. There are two functions XmlTextReader and XmlTextWriter which I use. The writing succeeds already, but I can't get SPECIFIC information ...
0
votes
1answer
100 views
XMLTextWriter C# and no data found for standard xml
So I am dealing with some hard core Legacy code here. We are talking .NET 2.0. My problem is that my program when run is spitting out an exception with the information saying No Data found for ...
0
votes
0answers
91 views
Writing cyrillic attribute value into an xml file
My initial question was misunderstood a little, so I'll try again.
I'm using xmlTextWriter from the libxml2 to write some xml files.
I'm working in Linux, the default encoding is UTF-8.
I create ...
1
vote
1answer
213 views
Writing cyrillic characters into an xml file
I'm using xmlTextWriter from the libxml2 to write some xml files. And I need to write cyrillic characters into them.
I do it this way:
xmlTextWriterStartDocument(writer, NULL, "utf-8", NULL);
...
...
0
votes
1answer
189 views
Performance issues creating an XML file from Database
I'm trying to write an XML file, which is a Google Product feed, but it's very slow.
Having done quite a bit of Googling, I am not sure of the fastest approach, except for breaking it into smaller ...
1
vote
1answer
266 views
How to use XmlTextWriter to write a object into XML?
I generated a Class with a XML Schema (.xsd) using the Visual Studio xsd tool. Now I have the class and I want to output that object back into XML as defined by my xsd. I am wondering how to do that.
...
0
votes
1answer
478 views
how to use XMLTextWriter to write XML node at a specified position
I have an xml file likes below.
<?xml version="1.0" encoding="utf-8" ?>
<Book>
<Title>Title</Title>
<Content>Content</Content>
</Book>
I want to write ...
0
votes
2answers
108 views
.Net date conversion to RSS date
I have a date in String format,
mm/dd/yyyy
I want to convert this to RSS date format like,
friday, june 01, 2012, 12:11:25PM
and i want to add this date value which is basically the pubDate to ...
0
votes
3answers
323 views
Remove special case indentation in XML files
I want to modify a XML file but the tricky part is that the info I add should have minimal formatting. I have been searching for a while and I can't seem to find an answer. Here's what the XML looks ...
0
votes
1answer
625 views
xmlTextReader.ReadInnerXml() is pulling in my entire XML doc into one variable
I am creating XML index files to be read in a later step. I have variable length arrays, and I am writing them to one file.
There is a problem, I think its inside the reader code. For some reason the ...
0
votes
1answer
201 views
Want to add image to aspx rss page
I have a cod where my aspx.cs file writes to an aspx the xml tags.
Now i have a requirement where i need to add logo at the end of the 'title' tag.
this is my code,
writer.WriteStartDocument();
...
0
votes
1answer
262 views
.Net XmlTextWriter: prevent replacing of > or < with > or <
I'm creating xml-like mark-up language using System.Xml.XmTextWriter that will be read by a third party app.
In this mark-up language, symbols > and < when inside an element, need to show up as, ...
0
votes
1answer
288 views
Xdocument.Load is failing
I am unable to load Xdocument.Load I am unable to load Xdocument.LoadI am unable to load Xdocument.LoadI am unable to load Xdocument.LoadI am unable to load Xdocument.LoadI am unable to load ...
0
votes
1answer
119 views
CPU intensive XmlTextWriter
I have a web application that creates XML feeds on the fly, depending on criteria passed in via the query string.
It is a very simple application: it reads the query string variables, and uses them ...
1
vote
1answer
93 views
Omitting elements using custom XmlTextWriter
I'm implementing a custom XmlTextWriter and I'd like to omit any elements with a particular name that contain no attributes. I've gotten as far as being able to prevent the element from being written ...
2
votes
2answers
236 views
How to write quotation marks in KML through C# code
maybe a stupid question here but my html skills are faded now.. :)
I am creating a KML file with a button click and all the code for the KML tags is there. What I need is using more than one tags. ...
0
votes
2answers
683 views
xdocument save preserve white space inside tags
I am using XDocument in LINQ to edit (insert) and save xml document.
XDocument doc = XDocument.Load("c:\\sample.xml", LoadOptions.PreserveWhitespace);
...
6
votes
2answers
2k views
XmlTextWriter incorrectly writing control characters
.NET's XmlTextWriter creates invalid xml files.
In XML, some control characters are allowed, like 'horizontal tab' (	), but others are not, like 'vertical tab' (). (See spec.)
I ...
2
votes
1answer
2k views
How do I set the Settings property in XmlTextWriter, so that I can write each XML attribute on its own line?
I have this bit of code, which serializes an object to a file. I'm trying to get each XML attribute to output on a separate line. The code looks like this:
public static void ToXMLFile(Object obj, ...
1
vote
1answer
452 views
Looping checkboxlist and create XML using XMLTextWriter VB.net
I am a beginner developer with xml and .net. I have series of checkboxlists and I want to produce an xml file depending on the user select. I want xml file to be like this.
<?xml version="1.0" ...
1
vote
3answers
377 views
xmltextwriter transforms special characters
I get special characters transformed in the result of an xslt file transformation.
Has anyone experienced this before?
In the source document there's a character & which in the result is ...
1
vote
1answer
583 views
Viewing XmlTextwriter Content within debugger
I am working on some pretty complex code that is writing to a memorystream using an XmlTextwriter. Is there a way in Visual Studio debug to see the content of the memorystream/XmlTextwriter as I am ...
3
votes
1answer
558 views
A few questions about XmlTextWriter
I am new to editing XML and I have a few questions to problems I'm running into.
First: how do I add new lines after each writer.WriteEndElement();. I found examples using ...
0
votes
2answers
300 views
Why is chevron being encoded differently when I use XmlTextWriter class?
Seem to have some funny behaviour going on when I call the XMLTextWriter...
XmlTextWriter writer = new XmlTextWriter(targetFileName, Encoding.UTF8);
writer.WriteValue("< ?xml version=\"1.0\" ...
1
vote
0answers
207 views
Generation of xml files via recursion (of self joined table) not yielding desired hierarchy
I have the task of generating XML files from data populated in a self-joined table; all the XML files must conform to the hierarchy as defined in the self join.
I have written some recursive code to ...
2
votes
3answers
1k views
Memory stream is empty
I need to generate a huge xml file from different sources (functions). I decide to use XmlTextWriter since it uses less memory than XmlDocument.
First, initiate an XmlWriter with underlying ...
0
votes
2answers
48 views
which format of XmlTextWriter for answer xmlhttprequest
for answer a xmlhttprequest in .ashx file with xml that created with XmlTextWriter class how I must Outputting it ? to a file/string/memory ?
0
votes
1answer
184 views
how can i make xml for myXMLHttpRequest.responseXML with XmlTextWriter in .ashx
i try it in my .ashx page but i got error 500 in myXMLHttpRequest.status and i can't understand where is the problem. a simple code for generate a simple xml would be very good. like:
...
1
vote
2answers
557 views
Overwriting with a XmlTextWriter?
Simple question, how do i overwrite with a xmltextwriter?
I use var writer = new XmlTextWriter(exam.Path, null);.
SO if i have a new document it writes as i should be.
But if the document already ...

