| Thread | Last Post | Replies |
|
| Problem with ValidationEventHandler | 30 Sep 2008 11:44 GMT | 3 |
I've got a xml file and xsd with only one namespace - xmlns:media="http://search.yahoo.com/mrss". When I'm getting the rss feed for example from Youtube there're also others namespaces such as xmlns:atom or xmlns:yt. When I'm trying to validate this Xml with my
|
| XMLTextWriter and XMLTextReader | 27 Sep 2008 23:34 GMT | 1 |
I am looking for a way to open an xmltextwriter to append to an existing document. Currently I rename the existing document, then I created new one and copy over all the existing documents nodes. I would rather avoid renaming the files.
|
| create xml document based from schema | 26 Sep 2008 12:47 GMT | 6 |
I have the following schema. I need to know how to make an xml document based from it. The main worry I have is the DateTime field. <?xml version="1.0" encoding="utf-8"?> <xs:schema attributeFormDefault="unqualified" elementFormDefault="qualified"
|
| XmlNode.HasChildNodes | 25 Sep 2008 13:41 GMT | 1 |
I have the following issue. I'm trying to read to following XML doc. <Main> <Submain> <SubField1/>
|
| XML <-> object mapping tool? | 25 Sep 2008 06:14 GMT | 2 |
Hi; I have a small XML file that I need to read/change from my app. Is there some easy way to map from XML to my objects so I can just read it in to my objects, change the objects as needed, then write the
|
| Using 'LIKE' with XML Data | 23 Sep 2008 13:13 GMT | 5 |
I keep some notes in a small XML data file and would like to be able to search them. I am building a filter string: filterString = string.Format("{0} '%{1}%'", "SELECT * FROM " + m_TableName
|
| Handling multiple schemas and large files in XML | 23 Sep 2008 06:53 GMT | 2 |
I hope that this is the correct place to post this question. I'm looking at developing an application which will enable me to import and process some data that is made available to me as XML. One complication is that the providers of the data have published two
|
| Formatting XmlTextWriter Output | 19 Sep 2008 17:54 GMT | 13 |
// I want this format... <rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:media="http://search.yahoo.com/mrss/">
|
| troubleshooting XSLT performance | 17 Sep 2008 17:39 GMT | 4 |
I am using .Net 2.0 to run an XSLT process. It basically takes a word XML document at it's input, plus a separate XML file opened using the document() function and applies changes to the word document on the basis of the secondary file.
|
| Transforming XML from Data Objects | 12 Sep 2008 12:30 GMT | 1 |
I have a collection of data objects that are based on my application's data model. I want to be able to serialize this data to different XML formats (schemas) for use by different consuming applications. For example, I want to generate XML from the data one way for
|
| How to read XML file without "Root" Node | 10 Sep 2008 16:30 GMT | 2 |
Try to read following type of XML file, but only get data back on first node: <log id="1234"> <message type="Action"/>
|
| feedback please | 08 Sep 2008 17:13 GMT | 3 |
Hi all; Since everyone here is great about feedback - what do you think of this design for an XPath wizard? This is for people who span the gamut from barely know what an XML file is to programmers.
|
| XPathNavigator.Matches doesn't work as I expect | 06 Sep 2008 08:59 GMT | 4 |
I cannot guess, why some XPath expressions in my code returns false and some even errors, while the others returne true as I expected. I'am workin with VS 2008 Express Edition. Dim xEl As XElement = <root><child1><child2/></child1></root>
|
| Validation ignores fixed attribute | 04 Sep 2008 18:48 GMT | 4 |
hi @all, I'm trying to validate a XML against a schema using the example from the MSDN: http://msdn.microsoft.com/en-us/library/system.xml.xmlreadersettings.validationt ype.aspx
|