| Thread | Last Post | Replies |
|
| A couple of newbie xsl conversion of xml to html questions (C#/.Net) | 30 Apr 2005 12:37 GMT | 1 |
I have some xml data that I want to turn into an html report. I wrote some xsl (my first xsl) and tested it in XMLSpy. It transformed my xml to html pretty much how I wanted (I'm still trying to understand table formatting, like table width in xsl, my tables aren't as wide as I'm
|
| XMLValidatingReader.Read() question | 29 Apr 2005 14:22 GMT | 3 |
i am using an XMLValidatingReader in a manner similar to the following code example: string sReturn = ""; XmlValidatingReader oXML = new XmlValidatingReader(sXMLString,
|
| XPathNodeList.Count throws exception in .Net v2.0 | 28 Apr 2005 20:50 GMT | 3 |
During the process of an XML document, I have to make a SelectNodes() call on an XmlDocument. It returns an isntance of XPathNodeList. I can call it several times but at one point, the result can't be iterated. Here is the code:
|
| custom XPathNavigator implementation | 28 Apr 2005 18:32 GMT | 1 |
I'm trying to build a couple classes that would allow for writing xsl transforms against data that is not originally xml. I've got an xmlreader implementation that seems to work well. Based on some issues with it and transforms, I then wrapped it up in a custom xpathnavigator ...
|
| rss feeds on XML | 28 Apr 2005 13:31 GMT | 2 |
Does anybody know of any good rss feeds on XML/XSLT/XAML? Any advice would be really appreciated. Cheers, Mike
|
| Access to the path...is denied? | 28 Apr 2005 04:58 GMT | 3 |
Sorry for cross-posting with the xsl group but this seems like a asp.net xml specifici issue... I'm getting the following error when I try to use a xslt transformation. My function is below. It only happens on our dev server so I'm not sure what
|
| passing XML querystring | 27 Apr 2005 20:44 GMT | 2 |
i want to pass XML data in querystring from one to another asp page. it is about 10000 characters long, i cannot use FORM because it is already nested in one. What i do is i have IFRAME and im passing some xml data
|
| XML Schema not working | 27 Apr 2005 17:44 GMT | 2 |
AIML Schema: http://209.168.21.76/CommunityStarterKit/Downloads/258.aspx I have a Schema (in the link above) that I've been trying to make work in VS2003 for a while now and just can't seem to get right. I didn't design the schema and to tell the truth, most of it is beyond my ...
|
| Filter XmlDocument based on XPath expressions | 27 Apr 2005 16:38 GMT | 1 |
I have a very complex XmlDocument. I want to create a new XmlDocument that contain only certain certain elements, based on a set of XPATH expressions I have. What is the easiest and least performance impacting solution for this using
|
| Help have to move away from SQLXML | 26 Apr 2005 23:37 GMT | 3 |
We current have a bunch of web services that make user of the SQLXML object. A template is created in code which calls several stored procedures each of which returns multiple xml recordsets from our SQL Server 2000 database. When the template is run an XSL transformation is ...
|
| xml question? | 26 Apr 2005 18:43 GMT | 2 |
what is the equivalent of this in C# ? foreach (XmlNode xmlConfigNode in xmlConfigDoc["configuration"].ChildNodes) Thansk
|
| Problem validating w3c XML Schema Module with XmlValidatingReader | 26 Apr 2005 18:35 GMT | 2 |
I've created an XHTML extension module which validates correctly using the W3C online schema validator, but fails when I use the .net 1.1 validator. It seems to be choking on an included W3C file: http://www.w3.org/MarkUp/SCHEMA/xhtml-notations-1.xsd The problem seems to be ...
|
| VC++ .NET 2003: XmlTextReader Class Generates A Runtime Exception | 26 Apr 2005 18:35 GMT | 1 |
I did the "Build" on the attached code in my VC++ .NET 2003 - Windows XP Pro PC. On the c:\ screen, I got the following: Microsoft Development Environment An unhandled exception of type 'System.Xml.XmlException' occured in system.xml.dll
|
| VC++ .NET 2003: XmlTextReader Errors C2144 & C1004 | 24 Apr 2005 19:39 GMT | 2 |
I read the Microsoft KB Q815658 "How to read the XML data from a file using Visual C++ .NET" and tried to follow the steps of executing its source code in my VC++ .NET 2003 under Console Application (.NET). I lauched a project 'Q815658XMLRead' (see the attached .cpp file below) ...
|
| XmlValidatingReader question | 23 Apr 2005 12:36 GMT | 9 |
how do you use the XmlValidatingReader to validate an XML document that is passed into the XmlValidatingReader constructor? it looks like the normal process is to use an underlying reader, as follows (C#):
|