| Thread | Last Post | Replies |
|
| Newbie: Adding Schema breaks working code | 17 Dec 2003 12:56 GMT | 2 |
The following code worked great until I added a schema (generated by VS .NET) to the XML document. XmlDocument xdoc = new XmlDocument(); xdoc.Load("NewsSource.xml");
|
| Retrieving JUST text from a node with child nodes | 17 Dec 2003 05:43 GMT | 2 |
Can't seem to figure out how to retrieve the text of a node with multiple child nodes (and I just want the text of the parent, not the InnerText or InnerXML that comes with it). My doc looks something like this:
|
| XmlSerializer encoding and declaration issue | 17 Dec 2003 03:53 GMT | 2 |
I am using XmlSerializer to serialize an object to xml string like the following at C#. Now, I want to know how can I 1. change the default encoding to utf-8 or others, instead of utf-16 2. remove the XML declaration => <?xml version ....>
|
| String TO xml (xml string) | 17 Dec 2003 03:00 GMT | 1 |
I am trying to take a string and convert it to a data source. The string is Xml that I am pulling out of sharepoint and looks like this: <Field FromBaseType="TRUE" Type="Choice" Name="Status"
|
| Error Message (Same table, cannot be the the child of two nested relations) | 17 Dec 2003 02:15 GMT | 1 |
We created a XML Schema that has nested table relations. We had the following Warning message come up. An unhandled exception of the type 'System.ArgumentException' occurred in system.data.dll
|
| web service | 16 Dec 2003 20:44 GMT | 1 |
i am new to .NET Tecnology. i have the following problem. i am accessing a lotus notes document in .Net using Domino objects component as reference. This is working perfect as a windows client.
|
| Export Access query as XML and read into dotnet DataSet?? | 16 Dec 2003 19:58 GMT | 9 |
(I'm new to XML) I can export data from Access as an XML file (with schema integrated in the XML file). I can read it into a DotNet DataSet, but the schema is not correct that is - I do not get the right columns.
|
| .net xml editor doesn't recognize extension correctly | 16 Dec 2003 17:53 GMT | 2 |
I am trying to use the xml desinger in .net 1.1 to create the follow schema. where USAddress is derived from Address But when I generate the xml file, the .net xml editor says "The active schema does not support the element 'street'"
|
| A question for the guro | 16 Dec 2003 12:42 GMT | 4 |
How do I select a node that has both namespace and is prefixed? IE: <a:b> (and also in the default namespace!)
|
| How can i specify default XML namespace when it does not declared in the xml document | 16 Dec 2003 11:27 GMT | 1 |
How can i specify default XML namespace when it does not declared in the xml document I need it for validation against xml schema @@@I have a procedure
|
| System.Array to XML | 16 Dec 2003 09:53 GMT | 5 |
Hi.. Is there a way to convert a System.Array to XML... If you know thanks very much... if you don't... Please do not respond stupid things like " Yes -- many ways."
|
| Xml replace method removes indentations | 16 Dec 2003 00:27 GMT | 2 |
I am using the document.replacechild method to replace some values. But when used, it removes the previous indentation that was in the document for that node. Actually looks like the CRLF is being removed for some reason, any luck.
|
| How to create xml elements with special chars | 15 Dec 2003 17:32 GMT | 6 |
newbie that i am in .Net, i'm trying to add "D/T" as a new element in C#
XmlElement elemAttr = (XmlElement)m_xmlDoc.AppendChild(m_xmlDoc.CreateElement("D/T" ) );
|
| Client Side Implementation Question? | 15 Dec 2003 14:58 GMT | 2 |
I have a several very extensive and complex wizard like interfaces I have to right shortly which will require the user to have IE6. Each of these interfaces will rely heavily on xml and xsl transformations for client side rendering. The end result being a submitted xml file either ...
|
| USE of system.xml.xpath | 15 Dec 2003 13:19 GMT | 1 |
Hi Friends, When we need the xpath namespace as we can traverse the xml document using xmldocument object like using selectSingleNode or selectNodes methods. In system.xml.xpath namespace we have to use XPathNavigator , XPathExpression , XPathNodeIterator ...
|