| Thread | Last Post | Replies |
|
| VS2005 XML Template? | 30 May 2006 19:38 GMT | 3 |
I've done some researching on the net and I keep seeing references to an XML/XSLT Template in the New/Add Project dialog window, however I do not see such a template in the dialog window. I tried checking add/remove components after reinserting the VS2005 disc, but no mention
|
| Convert Question (From XML to XML) using XSLT? | 30 May 2006 19:24 GMT | 3 |
I have following XML File: <Header></Header> <Category></Category> <Item1></Item1>
|
| Cannot resolve the schemaLocation attribute C# | 30 May 2006 18:35 GMT | 1 |
I am using an xml schema (Schema1.xsd) which refers to two other Schemas as follows. <xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:plcm-s="http://www.mycompany.com/plcm"
|
| Tips and Tricks XML | 30 May 2006 12:59 GMT | 1 |
Anybody know where is the best site to learn Tips & Tricks programming for XML ? thanks JR
|
| XML document and XML schema | 29 May 2006 21:58 GMT | 1 |
We have a requirement to utilize some sort of data storage, and XML strikes as being as viable a technology as the next one. I have started by using the XMLSchema designer to cook up a minimal schema to get us started.
|
| XML Request & Response & ASP.NET 2.0 | 29 May 2006 09:18 GMT | 1 |
I would like to know like in ASP.NET 2.0 or .net version 2.0, how do I parse the XML and consume it?. right now I am using the old methods like XML DOM. second thing is I need to send a XML Request to some URL, inturn I will be
|
| How do I load the XML got by HttpWebResponse read into a StreamRea | 29 May 2006 06:48 GMT | 2 |
Hi, I would like to know like How do I load the XML Response which I got from HttpWebResponse? What I am doing, I will just put for your perusal;
|
| problem processing SOAP response | 29 May 2006 04:55 GMT | 5 |
I have a problem consuming a WebService which appears to be dependent of the type of network I am on: The following SOAP response is not processed when I am connected over the internet with the WebService but it is processed correctly when I am on the
|
| Using XMLTextWriter (or related tool) to write to a string? | 28 May 2006 09:23 GMT | 2 |
We've been using xmltextwriter to write XML files to the filesystem. For various reasons, we're ditching the filesystem and want to store the XML as text in a DB field. Looking at all the examples of using the XMLTextWriter, however, it appears
|
| Implementation of context using xpath for treeview (c#) | 26 May 2006 16:28 GMT | 3 |
I have the following xml: <?xml version="1.0" ?> <course> <globalProperties>
|
| Code Generator that writes code to generate an XML doc structure? | 26 May 2006 03:03 GMT | 3 |
Has anyone ever seen or created such a code generator? I'm looking for a sample of a code generator that will generate code (preferably one that uses C# and the XMLTextWriter) to create an XML document structure based on an XML file as input.
|
| Is it possible to use regular expressions inside of an xpath statement executed by System.Xml.XmlDocument.SelectSingleNode() ? | 25 May 2006 11:07 GMT | 4 |
Is it possible to use regular expressions inside of an xpath statement executed by System.Xml.XmlDocument.SelectSingleNode() ? string sdoc = "<foo><bar a='1'/><bar a='2'/></foo>"; System.Xml.XmlDocument pdoc = new System.Xml.XmlDocument();
|
| xpath syntax | 25 May 2006 06:15 GMT | 3 |
I have the following xml: <?xml version="1.0" ?> <course> <globalProperties>
|
| "this is an unexpected token" error | 24 May 2006 15:52 GMT | 4 |
I have an XML file that starts like this: <?xml version="1.0" encoding="ISO-8859-1" xmlns:fn="http://www.w3.org/2005/xpath-functions"?> <Authors>
|
| How to get first grandparent attribute not nodeset? | 24 May 2006 13:26 GMT | 1 |
I'm using this... //Role[@UserName='kburke'][not(@finish)]/../../@Name but it returns more than one result. I need the FIRST grandparent @Name returned. I've tried:
|