Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

5
votes
2answers
168 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 ...
4
votes
1answer
928 views

How to save XmlDocument with multiple indentation settings?

I need to save one XmlDocument to file with proper indentation (Formatting.Indented) but some nodes with their children have to be in one line (Formatting.None). How to achieve that since ...
3
votes
2answers
350 views

XmlDocument.WriteTo truncates resultant file

Trying to serialize an XmlDocument to file. The XmlDocument is rather large; however, in the debugger I can see that the InnerXml property has all of the XML blob in it -- it's not truncated there. ...
2
votes
1answer
107 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 ...
2
votes
2answers
2k views

INSERT Xml into SQL Server 2008 database

Hello I'm trying to insert some XML data into a table on SQL Server 2008. However I keep getting thrown this error; XML parsing: line 1, character 39, unable to switch the encoding The database ...
2
votes
1answer
384 views

Stream and XmlTextwriter… Request is not recieved correctly

Im stuck on this httpWebRequest problem. I need to send XML to a website. But I keep getting negative responses on my request. I saw some code examples where the ContentLength was set... And that ...
2
votes
2answers
2k views

How to indent after newline in xml element value when using an XmlTextWriter?

I am trying to indent after a newline when using an XmlTextWriter So essentially i want this <?xml version="1.0" encoding="utf-16"?> <element> a </element> but using the code ...
1
vote
1answer
38 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 ...
1
vote
2answers
57 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. ...
1
vote
1answer
62 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
2answers
86 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
87 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 ...
1
vote
0answers
102 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 ...
1
vote
3answers
271 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 ...
1
vote
2answers
133 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 ...
1
vote
4answers
544 views

How can I generate XML with CR, instead of CRLF in XmlTextWriter

I'm generating XML via XmlTextWriter. The file looks good to my eyes, validates (at wc3), and was accepted by the client. But a client vendor is complaining that the line-endings are CRLF, instead ...
1
vote
1answer
522 views

XmlTextWriter.WriteFullEndElement tags on the same line

I am using an XMLTextWriter to create an XML document dynamically (in VB.Net). I want empty tags to appear like this - <Tag></Tag> and not this - <Tag /> So, I am using ...
1
vote
3answers
632 views

Check output size using .NET XmlTextWriter

I need to generate an XML file and i need to stick as much data into it as possible BUT there is a filesize limit. So i need to keep inserting data until something says no more. How do i figure out ...
1
vote
3answers
695 views

How to Prevent the conversion of & to &amp; using XmlTextWriter?

The '&' in the text gets escaped and gets converted to &amp; when creating the xml file using XmlTextWriter but i dont want the conversion to take place how to prevent it? Is there any other ...
1
vote
1answer
713 views

XMLTextWriter to XMLDocument

I've got an XMLTextWriter writing to a Stream of a WebRequest. Everything works as it should: Dim wr As WebRequest = WebRequest.Create("https://wwwcie.ups.com/ups.app/xml/ShipAccept") With wr ...
1
vote
2answers
462 views

C# XmlTextWriter: Allows Unicode?

I'm using XmlTextWriter to save certain configuration elements for my program (it's only 10-15 string values, this is why I'm using XmlTextWriter). My code looks as follows: XmlTextWriter writer = ...
1
vote
3answers
2k views

C#: XmlTextWriter.WriteElementString fails on empty strings?

I'm using XmlTextWriter and its WriteElementString method, for example: XmlTextWriter writer = new XmlTextWriter("filename.xml", null); writer.WriteStartElement("User"); ...
1
vote
2answers
1k views

C#: Sanitize XML text values with XmlTextWriter?

I'm using XmlTextWriter to serialize and persist some of my data. Several of the fields I serialize are based on user input (e.g. Username). Today I use the WriteElementString method of XmlTextWriter. ...
0
votes
1answer
41 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 ...
0
votes
2answers
59 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); ...
0
votes
1answer
100 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, ...
0
votes
0answers
80 views

XmlTextWriter using Response.Output vs Response.OutputStream

Funny thing - whilst validating an XML that was written using a XmlTextWriter to the stream of a generic handler, using new XmlTextWriter(context.Response.OutputStream, Encoding.UTF8) generated ...
0
votes
2answers
97 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\" ...
0
votes
0answers
402 views

Serialized XML File using XmlTextWriter and Read using XmlTextReader?

We have a product which uses 'XmlTextWriter' in C# - .NET 2.0 to create a large number of small XML Files. These files are then repeatedly read using 'XmlTextReader'. We have found that in very ...
0
votes
0answers
69 views

What am I doing wrong here, having issues with XmlWriter in ashx

Please take a look at the following code, as I get the error at this line: (I'm new with XmlWriter) writer.WriteStartElement("buildings"); Error: InvalidOperationExeption was Unhandled by user code ...
0
votes
2answers
29 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
78 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: ...
0
votes
2answers
229 views

Skip item if null for xml text writer

I have Windows form C# application that takes values from the GUI and uses XML Textwriter to create an XML file from them. The problem is some of these values are meant to be optional and when the ...
0
votes
3answers
153 views

Reusing XmlTextWriter class

Is it possible to reuse the same instance of XmlTextWriter class for generating more xml documents? I mean something like this: XmlTextWriter writer = new XmlTextWriter(); ...
0
votes
2answers
215 views

XmlTextWriter not working in my VB .ASP page Literal

I'm getting the error below when I try usign the XmlTextWriter in my VB aspx page Description: An error occurred during the compilation of a resource required to service this request. Please ...
0
votes
1answer
376 views

C# Ashx Google xml sitemap generation error

I'm using a ashx to deliver my websites sitemap for Google. Its all worked perfectly until I recently. When requesting the sitemap in Google at http://www.naughtyfancydress.com/sitemap.ashx I get: ...
0
votes
2answers
171 views

I want to edit xml file

I have modified the structure of d xml file. i want to edit value of visible
0
votes
1answer
283 views

How to write xml data into multiple files by checking file size

I'm creating a xml sitemap! There is a limit of 50k urls or 10MB size limit. Is there a way to check the size of file and write to a new xml file when a size limit of 10MB is reached? I'm using ...
0
votes
3answers
518 views

Save XML like XmlTextWriter but with DOM

When I build a XML in C# using XmlDocument, and I want to save to XML to file, including the encoding information, I use XmlTextWriter, as below: using (StringWriter swr = new StringWriter()) ...
0
votes
1answer
395 views

How do I display a Registered Trademark symbol (®) using VB.NET?

I have taken over support of an application at the company I work for. All of a sudden, the customer wants to be able to enter a registered trademark in a name field. The symbol, using ALT+0174, is ...
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
3answers
3k views

Modify XML existing content in C#

Purpose: I plan to Create a XML file with XmlTextWriter and Modify/Update some Existing Content with XmlNode SelectSingleNode(), node.ChildNode[?].InnerText = someting, etc. After I created the XML ...
0
votes
3answers
269 views

How to wrtie a XML License Line(ended with a forward slash '/') in C#?

I want to write a XML file as below: <?xml version="1.0" encoding="UTF-8"?> <books xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> ...
0
votes
2answers
541 views

C# XmlTextWriter class and VisualStudio

I'm trying to use the XmlTextWriter class in C# but it only works if I give the complete path to the file (as in "C:\file.xml"). If I try to use relative path (as in "file.xml"), it creates the file ...
0
votes
1answer
202 views

XmlTextWriter responds with System.InvalidOperationException during creation of second element

I am having trouble with XMLTextWriter.WriteStartElement throwing an exception: System.InvalidOperationException when trying to write the second element in my XML document. This error comes back ...
0
votes
3answers
1k views

WriteStartDocument() problem

I'm trying to generate XML and I encounter this exception: XmlTextWriter xmlWriter = new XmlTextWriter(Response.OutputStream, Encoding.UTF8); xmlWriter.WriteStartDocument(); ...
0
votes
1answer
125 views

refactoring question

Given a method public static string[] Foo(System.IO.Stream stream) { XmlTextWriter xmlWriter = new XmlTextWriter(stream, System.Text.Encoding.ASCII); ...
0
votes
3answers
807 views

Question about XMLTextWriters and Streams

We have a VXML project that a 3rd party parses to provide us with a phone navigation system. We require them to enter an id code to leave a message, which is later reviewed by our company. We ...