Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

5
votes
2answers
132 views

XmlDocument.Load fails, LoadXml works:

In answering this question, I came across a situation that I don't understand. The OP was trying to load XML from the following location: http://www.google.com/ig/api?weather=12414&hl=it The ...
3
votes
3answers
220 views

using C#'s XmlReader on slightly malformed XML

I'm trying to use C#'s XmlReader on a large series of XML files, they are all properly formatted except for a few select ones (unfortunately I'm not in a position to have them changed, because it ...
2
votes
1answer
148 views

xmlbeans.xmlexception. illegal XML character 0x0

I create an xml document in C# by converting a string to bytes via System.Text.UTF8Encoding(). I then send this to my java program for xmlbeans to parse via a TCP connection. No matter what i try, i ...
2
votes
2answers
292 views

A first chance exception of type 'System.Xml.XmlException' occurred in System.Xml.dll

When I start my application (it is a client which connect with WCF to a Service) I see in the Output-Window of Visual Studio many lines with A first chance exception of type ...
2
votes
1answer
834 views

XmlReader ReadStartElement causes XmlException

I'm writing a file reader using the XmlReader in a Silverlight project. However, I'm getting some errors (specifically around the XmlReader.ReadStartElement method) and it's causing me to believe that ...
2
votes
2answers
160 views

Where can I find a list of all possible messages that an XmlException can contain?

I'm writing an XML code editor and I want to display syntax errors in the user interface. Because my code editor is strongly constrained to a particular problem domain and audience, I want to rewrite ...
2
votes
3answers
2k views

Exceptions with DateTime parsing in RSS feed in C#

I'm trying to parse Rss2, Atom feeds using SyndicationFeedFormatter and SyndicationFeed objects. But I'm getting XmlExceptions while parsing DateTime field like pubDate and/or lastBuildDate. Wed, 24 ...
1
vote
2answers
434 views

How to get an XElement with special characters in XML tag

I have an XML document I'm trying to traverse, which is SDMX-compliant. Here's a short sample: <root> <csf:DataSet id="J10"> <kf:Series> <value> 107.92 ...
1
vote
3answers
80 views

If XmlException.SourceUri is read-only, what good is it?

I have a couple places in my code where it throwing a new System.Xml.XmlException seems appropriate. I could just do throw new XmlException("Your XML sucks go fix it then try again."); But I ...
1
vote
2answers
2k views

What does the org.apache.xmlbeans.XmlException with a message of “Unexpected element: CDATA” mean?

I'm trying to parse and load an XML document, however I'm getting this exception when I call the parse method on the class that extends XmlObject. Unfortunately, it gives me no ideas of what element ...
0
votes
0answers
90 views

Silverlight Rich TextBox, XMLException

For the last few days I have been searching the internet to find a decent silverlight WYSIWYE editor. At last I found this decent one at vectorlight.net. I completely copied the code and editted out ...
0
votes
0answers
243 views

Invoke of ASMX webmethod fails with XMLException but works without an ASP.Net client

When I test my webservice from my development webserver (screen below) I click the INVOKE button and a new window opens, prompts for OPEN or SAVE, and the application associated with the filetype ...
0
votes
2answers
54 views

Catch only character encoding issues in XmlException

I'm using System.Xml to parse xml documents. Sometimes the xml documents contain unencodable characters and then an XmlException gets thrown. In those cases, I want to retry parsing the document with ...
0
votes
2answers
873 views

XmlException was unhandled?

This has been annoying me for sometime and I cannot figure out why. I need someone with a keen eye to spot where I could have gone wrong. The exception is thrown by this: public static ...