| Thread | Last Post | Replies |
|
| xmlns="" automatically generated | 07 Sep 2004 09:58 GMT | 1 |
I have the following code: XmlElement parent= m_xmlDoc.CreateElement("parent", "http://tempuri.org/myns"); parent.InnerXml = "<child1>text</child1><child2>text</child2>"; "http://tempuri.org/myns" is declared as the default namespace for this xml file.
|
| WriteXml to include xslt reference statement - how? | 07 Sep 2004 08:04 GMT | 3 |
I'm new to using xml/xslt and although I can create an xml document using the dataset.WriteXml statement, and I have created an xslt to transform the xml into the output I want, I have to manually add the xsl reference statement to the xml file.
|
| DataSet.ReadXmlSchema chokes on uddi_v3.xsd | 07 Sep 2004 05:26 GMT | 1 |
I am trying to read the standard UDDI schema using a DataSet. however, it always chokes with error. Here are the full details: Schema used: http://uddi.org/schema/uddi_v3.xsd C# (.NET) calls made:
|
| XSD Problem when using Xpath code | 07 Sep 2004 03:11 GMT | 2 |
When I import an xml document in Visual studio and Genereate as schema from it, and create a dataset from it, it adds this line into to the root element of my xml file - "xmlns="http://tempuri.org/nameOfRoot.xsd"
|
| Ask for xmlelement copy method | 07 Sep 2004 02:41 GMT | 4 |
I have two instance of xml.xmldocument. One is XA another is XB. XA has a child node XA1. XA1 has many attributes and child nodes. Now I want to copy XA1 to XB with all of it's attributes and child nodes. In .NET, the type of XA1 is xml.xmlelement.
|
| XSLT Doing my brain in.... | 06 Sep 2004 16:35 GMT | 3 |
I have a raw XML order file with the following structure <root> <header> <body>
|
| Updating and inserting an existing xml document | 06 Sep 2004 15:09 GMT | 1 |
I am new to this xml. How can I update and insert some values in existing xml document. which parser i can use for it in dot net. Whether dot net XmlTextWriter I can user for this or there is any other way is there ?? Thanks and Regards,
|
| String to xml document | 06 Sep 2004 15:08 GMT | 1 |
I was hoping someone can help me with a little problem I can't seem to find any answers to. I've got a form wich will be posted. On receiving the post I would like to parse a formvar to a xml document.
|
| generate-id() and Microsoft .NET Framework 1.1 Service Pack 1 | 06 Sep 2004 09:34 GMT | 3 |
generate-id() appears to break in XSL transformations after installing Microsoft .NET Framework 1.1 Service Pack 1 or Visual Studio 2005 Beta. I have found several references to this searching the net but nobody has followed up with any answers. Is this really a bug or what? ...
|
| Best way of adding another node into an XML document? | 06 Sep 2004 09:21 GMT | 1 |
I just need to add a new node whenever someone enters new data on a page. This doesn't involve any editing of existing nodes in the XML document. I was wondering whats the "BEST" way to perform this. I was thinking of a dataset but its unneccessary to read all the
|
| Schema Import Or Include Question. | 05 Sep 2004 14:34 GMT | 1 |
what exactly is the difference between import and include? For Example if i had a schema called common, that had some common elements that i use such as address, phone ect. And then i created a schema called customers to keep track of well customers. how would i use the phone ...
|
| XmlNamespaceManager.LookupPrefix problem. | 05 Sep 2004 11:25 GMT | 1 |
I have the following code: <snip> XmlDocument xmlDoc = new XmlDocument(); xmlDoc.LoadXml(@"<?xml version=""1.0"" encoding=""UTF-8""?>
|
| Cancel async web service call | 04 Sep 2004 07:46 GMT | 1 |
I want to be able to cancel an async call to a VB.Net web service and for the web service to know it has been cancelled so that it can abort gracefully. I have used the Begin.... and End... methods of the proxy class to successfully run the web service asynchronously. And I used ...
|
| XML is UTF-16 encoding but I want UTF-8 encoding ? | 04 Sep 2004 04:33 GMT | 2 |
Hi there XML Gurus ;) I am trying to use XML Serialization to create a xml from a class, this is the output which I get when I create the XML and put in a string variale. "<?xml version=\"1.0\" ...
|
| Help Creating XmlNode / XmlAttribute Elegantly | 03 Sep 2004 13:01 GMT | 2 |
I am creating a configuration class to read / write a standard configuration file. <?xml version="1.0" encoding="utf-8"?> <configuration> <appSettings>
|