| Thread | Last Post | Replies |
|
| Mapping dataset tables to XML output | 17 Oct 2006 11:34 GMT | 2 |
Hi, I'm really stuck with this one. I have a dataset with two tables. One table is company data, and the other is contacts. I populate these by using a SP in SQL Server which returns the two tables in one call. I'm using Microsoft
|
| xml into collections | 16 Oct 2006 18:08 GMT | 1 |
we have an xml file. Based on this file we have to generate menu. This xml file changes every day. We are loading the xml file into the application memory and
|
| XmlSchema not loading from XmlTextReader | 16 Oct 2006 18:05 GMT | 1 |
For some reason, the schema seems to be empty every time it's loaded. Does anyone have any ideas?? Thanks! Here's the code: Dim xsd As System.Xml.Schema.XmlSchema
|
| How to read an XML file that contains a namespace? | 15 Oct 2006 21:16 GMT | 9 |
.NETters, This may be a simple question. However, I cannot figure out what I am doing wrong. Would appreciate if someone can help me. Here is my Sample.xml:
|
| Serialization of array of structs | 13 Oct 2006 16:06 GMT | 1 |
I have an array of structs which I am serializing. Is there a tag I can use to change the name of the struct members in the output XML? I know I can change the root node name with: [XmlArrayAttribute("LogInfo")]
|
| XPath on an XmlDataDocument | 13 Oct 2006 13:34 GMT | 3 |
I have a DataSet I want to work with as Xml using XmlDataDocument. I can't figure out how to query the resultant Xml using XPath. From the following XML below, what XPath query will return the list of orders for each Male customer? Because some tables in my DataSet have >1 foreign ...
|
| SelectSingleNode with namespaces | 13 Oct 2006 13:24 GMT | 4 |
My question is somewhat related to the previous question in this newsgroup: http://groups.google.de/group/microsoft.public.dotnet.xml/browse_frm/thread/db09 4f140f8359ca/5d58771b3b60cd47?hl=de#5d58771b3b60cd47 I am having trouble unerstanding how to use XmlNode.SelectSingleNode
|
| Creating sub nodes in an existing document from individual XML str | 13 Oct 2006 13:13 GMT | 1 |
I want to build an XML document from a number of sub documents. As I call objects in my data structure, each would return their own ToXml(), which I want to append to the main document that I'm building. I can't figure out how to create a Node from an XML string. Do I need to
|
| xmlnode question | 13 Oct 2006 10:10 GMT | 2 |
I'm new to xml and I have a question: I try to do the following Dim doc As New XmlDocument doc.LoadXml("<Request><Root><Requestor name='' /><FlowData flowstatus=''
|
| Xpath with namespaces | 12 Oct 2006 15:20 GMT | 6 |
I am having an issue with xml and namespaces, at least I think it is namespaces. When I use namespaces, I cannot use SelectSingleNode / SelectNodes as they always return 0/Nothing respectively. Anyone have any thoughts?
|
| NameTable questions | 11 Oct 2006 19:34 GMT | 5 |
is there a way to disable or reset the entries in a NameTable? Background is that is that i create small XmlElements and send them over the wire with a TCP connection. I can't create XmlElements without having a document. The XmlElements are only created, but never added to
|
| encoding xml when you don't want it to go to a file | 11 Oct 2006 13:57 GMT | 2 |
I'm trying to create a chunk of XML where I want all the entities to be encoded properly. However, I don't really want to use XmlTextWriter because I don't want to XML to go into a file on disk. Is there a simple utility method which will atke a string and an
|
| XML to XML mapping tool - XSLT Generator | 11 Oct 2006 02:56 GMT | 3 |
I'd like an inexpensive tool that can create moderately complex XSLT files based on the mappings from one XML schema to another. I would hope that the user could click and drag attributes from one schema to the next, resulting in an XSLT document that can be manually modified as ...
|
| last() | 10 Oct 2006 22:05 GMT | 2 |
I don't think I understand the last() function. I have a document that looks like: <Root> <Header>Some text</Header>
|
| xmldocument.preservewhite space question | 10 Oct 2006 13:20 GMT | 1 |
I have an xmldocument and need to set the preservewhitespace to true as after processing the document I want to write out the xml (using outerxml/innerxml) and have the identations preserved for readability. However with the preservewhite space option set code such as:
|