<?xml version="1.0"?><?xml-stylesheet type="text/xsl" href="http://www.codeplex.com/rss.xsl"?><rss version="2.0"><channel><title>MVPXML Forum Rss Feed</title><link>http://www.codeplex.com/Project/ListForums.aspx?ProjectName=MVPXML</link><description>MVPXML Forum Rss Description</description><item><title>New Post: API Documentation</title><link>http://mvpxml.codeplex.com/Thread/View.aspx?ThreadId=39674</link><description>&lt;div style="line-height: normal;"&gt;&lt;p&gt;The problem is that DocSite generated documentation needs ASP.NET web hosting, which I don't have anymore. You can find somewhat older (version 2.0) API docs at &lt;a href="http://mvp-xml.sourceforge.net/api/2.0/index.html"&gt;http://mvp-xml.sourceforge.net/api/2.0/index.html&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;Also the sources contain all documentation :)&lt;/p&gt;&lt;/div&gt;</description><author>olegt</author><pubDate>Sun, 01 Nov 2009 06:15:51 GMT</pubDate><guid isPermaLink="false">New Post: API Documentation 20091101061551A</guid></item><item><title>New Post: API Documentation</title><link>http://mvpxml.codeplex.com/Thread/View.aspx?ThreadId=39674</link><description>&lt;div style="line-height: normal;"&gt;&lt;p&gt;Riko,&lt;/p&gt;
&lt;p&gt;I&amp;nbsp; am having the same issue. Were you ever able to access the MVP.XML API documentation?&lt;/p&gt;
&lt;p&gt;Thanks,&lt;br&gt;Aaron&lt;/p&gt;&lt;/div&gt;</description><author>funkycowboy</author><pubDate>Fri, 30 Oct 2009 21:14:03 GMT</pubDate><guid isPermaLink="false">New Post: API Documentation 20091030091403P</guid></item><item><title>New Post: XmlElement over XPathNavigator</title><link>http://mvpxml.codeplex.com/Thread/View.aspx?ThreadId=68614</link><description>&lt;div style="line-height: normal;"&gt;&lt;p&gt;ok, I'll add some comments inside the source code. Where can I send or upload it? I'v never been commiting any code to CodePlex...&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;/div&gt;</description><author>Buvar</author><pubDate>Mon, 14 Sep 2009 16:01:23 GMT</pubDate><guid isPermaLink="false">New Post: XmlElement over XPathNavigator 20090914040123P</guid></item><item><title>New Post: XmlElement over XPathNavigator</title><link>http://mvpxml.codeplex.com/Thread/View.aspx?ThreadId=68614</link><description>&lt;div style="line-height: normal;"&gt;&lt;p&gt;That's cool!&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Looks like a valuable addition to the project :)&lt;/p&gt;&lt;/div&gt;</description><author>dcazzulino</author><pubDate>Mon, 14 Sep 2009 14:48:25 GMT</pubDate><guid isPermaLink="false">New Post: XmlElement over XPathNavigator 20090914024825P</guid></item><item><title>New Post: XmlElement over XPathNavigator</title><link>http://mvpxml.codeplex.com/Thread/View.aspx?ThreadId=68614</link><description>&lt;div style="line-height: normal;"&gt;&lt;p&gt;class XPathNavigatorXmlElement: XmlElement&lt;br&gt;{&lt;br&gt;...&lt;br&gt;}&lt;/p&gt;
&lt;p&gt;When filling the NodeList, I have a code like this:&lt;/p&gt;
&lt;p&gt;private XmlNode getNode(XPathNavigator navigator)&lt;br&gt;{&lt;br&gt;&amp;nbsp; IHasXmlNode hasNode = navigator as IHasXmlNode;&lt;br&gt;&amp;nbsp; if (hasNode != null)&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; return hasNode.GetNode();&lt;br&gt;&lt;br&gt;&amp;nbsp; if (navigator.NodeType == XPathNodeType.Element)&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; return new XPathNavigatorXmlElement(navigator);&lt;/p&gt;
&lt;p&gt;&amp;nbsp; throw new Exception(&amp;quot;...&amp;quot;)&lt;br&gt;}&lt;/p&gt;&lt;/div&gt;</description><author>Buvar</author><pubDate>Mon, 14 Sep 2009 06:44:07 GMT</pubDate><guid isPermaLink="false">New Post: XmlElement over XPathNavigator 20090914064407A</guid></item><item><title>New Post: XmlElement over XPathNavigator</title><link>http://mvpxml.codeplex.com/Thread/View.aspx?ThreadId=68614</link><description>&lt;div style="line-height: normal;"&gt;&lt;p&gt;XmlElement being your own custom type?&lt;/p&gt;&lt;/div&gt;</description><author>dcazzulino</author><pubDate>Sat, 12 Sep 2009 19:26:10 GMT</pubDate><guid isPermaLink="false">New Post: XmlElement over XPathNavigator 20090912072610P</guid></item><item><title>New Post: XmlElement over XPathNavigator</title><link>http://mvpxml.codeplex.com/Thread/View.aspx?ThreadId=68614</link><description>&lt;div style="line-height: normal;"&gt;&lt;p&gt;Hi, I made a simple implementation of XPathNavigatorXmlElement inheriting from XmlElement, which &amp;quot;simulates&amp;quot; XmlElement over XPathNavigator. It allows to get XmlNodeList even for XPathNavigator instances not implementing IHasXmlNode (only for XPathNodeType.Element).&lt;/p&gt;
&lt;p&gt;Now I can do things like this:&lt;br&gt;XPathDocument doc = new XPathDocument(new StringReader(xmlData));&lt;br&gt;XmlNodeList records = XPathCache.SelectNodes(doc, xpath);&lt;br&gt;foreach (XmlElement record in records)&lt;br&gt;{ ...}&lt;/p&gt;
&lt;p&gt;It could be included MVP.XML if found useful enough...&lt;/p&gt;&lt;/div&gt;</description><author>Buvar</author><pubDate>Fri, 11 Sep 2009 07:19:57 GMT</pubDate><guid isPermaLink="false">New Post: XmlElement over XPathNavigator 20090911071957A</guid></item><item><title>New Post: Help Needed with asmx .net 2.0 webservices</title><link>http://mvpxml.codeplex.com/Thread/View.aspx?ThreadId=63590</link><description>&lt;div style="line-height: normal;"&gt;&lt;p&gt;Hi,&lt;/p&gt;
&lt;p&gt;Does this project help in speeding-up default XMLSerializer of&amp;nbsp;.net 2.0?&lt;/p&gt;
&lt;p&gt;If yes, could anyone direct me to a code sample on how to use MVP.XML with asp.net 2.0 web services and asp.net 2.0 web application client?&lt;/p&gt;
&lt;p&gt;Any reference to documentation would be of great help here.&lt;/p&gt;
&lt;p&gt;Your help here is greatly appreciated.&lt;/p&gt;
&lt;p&gt;Regards,&lt;/p&gt;
&lt;p&gt;Pradeep Yanamandra,&lt;/p&gt;
&lt;p&gt;Microsoft Certified Professional Developer - Web&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;/div&gt;</description><author>pradeepy</author><pubDate>Sun, 26 Jul 2009 22:41:07 GMT</pubDate><guid isPermaLink="false">New Post: Help Needed with asmx .net 2.0 webservices 20090726104107P</guid></item><item><title>New Post: unit tests and the latest changeset</title><link>http://mvpxml.codeplex.com/Thread/View.aspx?ThreadId=60307</link><description>&lt;div style="line-height: normal;"&gt;&lt;p&gt;Hi,&lt;/p&gt;
&lt;p&gt;I have pulled down the latest changeset and not all of the unit tests pass.&amp;nbsp; Is this an indication there are issues with this changeset?&amp;nbsp; Should all unit tests pass?&amp;nbsp; I am using VS 2008 opening the solution with the &amp;quot;Mvp.Xml.VSTS.sln&amp;quot;.&amp;nbsp; I am up to 478/513 tests passing.&amp;nbsp; A few are getting file not found errors and&amp;nbsp; I am finding out not all of the files the tests need are getting copied into the TestResults/Common folder.&amp;nbsp; Although, other tests are failing in some asserts.&lt;/p&gt;
&lt;p&gt;Should all tests be passing?&amp;nbsp;&lt;/p&gt;&lt;/div&gt;</description><author>potentZilla</author><pubDate>Mon, 22 Jun 2009 20:53:35 GMT</pubDate><guid isPermaLink="false">New Post: unit tests and the latest changeset 20090622085335P</guid></item><item><title>New Post: MultiXmlTextWriter doesn't override WriteRaw method</title><link>http://mvpxml.codeplex.com/Thread/View.aspx?ThreadId=58871</link><description>&lt;div style="line-height: normal;"&gt;&lt;p&gt;The problem occurs when we have transformation element:&lt;/p&gt;
&lt;p&gt;&amp;lt;xsl:value-of select=&amp;quot;some-html&amp;quot; disable-outut-escaping=&amp;quot;yes&amp;quot; /&amp;gt;&lt;/p&gt;
&lt;p&gt;XslTransform call WriteRaw method at XmlWriter but the MultiXmlTextWriter doesn't override this method, so the output goes to main stream.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Is this an issue?&lt;/p&gt;&lt;/div&gt;</description><author>edy</author><pubDate>Tue, 09 Jun 2009 08:17:43 GMT</pubDate><guid isPermaLink="false">New Post: MultiXmlTextWriter doesn't override WriteRaw method 20090609081743A</guid></item><item><title>New Post: XpathMania, default namespace</title><link>http://mvpxml.codeplex.com/Thread/View.aspx?ThreadId=22827</link><description>&lt;div style="line-height: normal;"&gt;Did you ever find a solution to this ?
&lt;/div&gt;</description><author>steveculshaw</author><pubDate>Fri, 24 Apr 2009 16:29:32 GMT</pubDate><guid isPermaLink="false">New Post: XpathMania, default namespace 20090424042932P</guid></item><item><title>New Post: Does XslReader increase Performance?</title><link>http://mvpxml.codeplex.com/Thread/View.aspx?ThreadId=52899</link><description>&lt;div style="line-height: normal;"&gt;Hi there!&lt;br&gt;
&lt;br&gt;
We are implementing a WCF-REST-Service that uses a pre-compiled XSL transformation to generate the service response from the service request. To return the response we need the result of the XSLT transformation within an XElement object. At the moment, the XslCompiledTransform object writes the result to an XmlWriter object, which stores the XML data in a StringWriter object. When the transformation is finished, we parse this XML string with the XElement class. &lt;br&gt;
&lt;br&gt;
So my questions are: &lt;br&gt;
&lt;br&gt;
1) Becomes our solution more performant and scaleable if we use the XslReader class instead, i.e. create the XElement response object from the XslReader object via XElement.ReadFrom.&lt;br&gt;
2) Are there any known problems when applying XslReader in a WCF / ASP.NET environment?&lt;br&gt;
&lt;br&gt;
I appreciate any comment and / or answer!&lt;br&gt;
&lt;br&gt;
Martin&lt;br&gt;
&lt;br&gt;
&lt;a href="http://www.snipclip.com"&gt;www.snipclip.com&lt;/a&gt;&lt;br&gt;
&lt;br&gt;
&lt;/div&gt;</description><author>MartinSzugat</author><pubDate>Fri, 10 Apr 2009 13:33:56 GMT</pubDate><guid isPermaLink="false">New Post: Does XslReader increase Performance? 20090410013356P</guid></item><item><title>New Post: Using XIncludingReader with XPionter + Namespaces</title><link>http://www.codeplex.com/MVPXML/Thread/View.aspx?ThreadId=41982</link><description>&lt;div style="line-height: normal;"&gt;y.xml looks like this:&lt;br&gt;
&lt;br&gt;
&lt;br&gt;
&amp;lt;?xml version=&amp;quot;1.0&amp;quot;?&amp;gt;&lt;br&gt;
&amp;lt;a:top-level &lt;br&gt;
&amp;nbsp; xmlns:scc=&amp;quot;http://www.blablabla.coml/x&amp;quot;&lt;br&gt;
&amp;nbsp; xmlns:xi=&amp;quot;http://www.w3.org/2003/XInclude&amp;quot;&amp;gt;&lt;br&gt;
&amp;nbsp; &amp;lt;a:element&amp;gt;&lt;br&gt;
&amp;nbsp;&amp;nbsp; &amp;lt;a:config-type-1&amp;gt;some content&amp;lt;/a:config-type-1&amp;gt; &amp;nbsp;&amp;nbsp; &lt;br&gt;
&amp;nbsp; &amp;lt;/a:element&amp;gt;&lt;br&gt;
&amp;lt;/a:top-level &amp;gt;&lt;br&gt;
&lt;/div&gt;</description><author>damageboy</author><pubDate>Wed, 10 Dec 2008 22:27:39 GMT</pubDate><guid isPermaLink="false">New Post: Using XIncludingReader with XPionter + Namespaces 20081210102739P</guid></item><item><title>New Post: Using XIncludingReader with XPionter + Namespaces</title><link>http://www.codeplex.com/MVPXML/Thread/View.aspx?ThreadId=41982</link><description>&lt;div style="line-height: normal;"&gt;could you post the contents of teh y.xml file?&lt;br&gt;&lt;br&gt;&lt;div&gt;On Wed, Dec 10, 2008 at 4:01 PM, damageboy &lt;span dir=ltr&gt;&amp;lt;&lt;a href="mailto:notifications@codeplex.com"&gt;notifications@codeplex.com&lt;/a&gt;&amp;gt;&lt;/span&gt; wrote:&lt;br&gt;
&lt;blockquote style="margin:0pt 0pt 0pt 0.8ex;padding-left:1ex"&gt;   &lt;div&gt; &lt;p&gt;From: damageboy&lt;/p&gt; &lt;div&gt;Hi,&lt;br&gt;
I'm readng a .xml file with:&lt;br&gt;
var xir = new XIncludingReader(&amp;quot;x.xml&amp;quot;);&lt;br&gt;
var ccXml = XDocument.Load(xir);&lt;br&gt;
&lt;br&gt;
The x.xml file looks like this:&lt;br&gt;
&lt;br&gt;
&amp;lt;?xml version=&amp;quot;1.0&amp;quot;?&amp;gt;&lt;br&gt;
&lt;br&gt;
  xmlns:scc=&amp;quot;&lt;a href="http://www.blablabla.coml/x"&gt;http://www.blablabla.coml/x&lt;/a&gt;&amp;quot;&lt;br&gt;
  xmlns:xi=&amp;quot;&lt;a href="http://www.w3.org/2003/XInclude"&gt;http://www.w3.org/2003/XInclude&lt;/a&gt;&amp;quot;&amp;gt;&lt;br&gt;
  &lt;br&gt;
    &amp;lt;xi:include href=&amp;quot;y.xml&amp;quot; xpointer=&amp;quot;xpointer(/a:top-level /a:element)&amp;quot;/&amp;gt;&lt;br&gt;
  &lt;br&gt;
&lt;br&gt;
&lt;br&gt;
The reader fails to find the xpath expression...&lt;br&gt;
What do I need to do to make the XIncludingReader to work properly? 
&lt;/div&gt; &lt;div&gt; &lt;p&gt;Read the &lt;a href="http://www.codeplex.com/MVPXML/Thread/View.aspx?ThreadId=41982&amp;ANCHOR#Post139373"&gt;full discussion online&lt;/a&gt;.&lt;/p&gt; &lt;p&gt;To add a post to this discussion, reply to this email (&lt;a href="mailto:MVPXML@discussions.codeplex.com?subject=[MVPXML:41982]"&gt;MVPXML@discussions.codeplex.com&lt;/a&gt;)&lt;/p&gt;
 &lt;p&gt;To start a new discussion for this project, email &lt;a href="mailto:MVPXML@discussions.codeplex.com"&gt;MVPXML@discussions.codeplex.com&lt;/a&gt;&lt;/p&gt; &lt;p&gt;You are receiving this email because you subscribed to this discussion on CodePlex. You can &lt;a href="http://www.codeplex.com/site/discussions/project/unsubscribe/MVPXML"&gt;unsubscribe or change your settings&lt;/a&gt; on codePlex.com.&lt;/p&gt;
 &lt;p&gt;Please note: Images and attachments will be removed from emails. Any posts to this discussion will also be available online at &lt;a href="http://codeplex.com"&gt;codeplex.com&lt;/a&gt;&lt;/p&gt; &lt;/div&gt; &lt;/div&gt; &lt;/blockquote&gt;
&lt;/div&gt;&lt;br&gt;&lt;br clear=all&gt;&lt;br&gt;-- &lt;br&gt;Daniel Cazzulino | Developer Lead | XML MVP | Clarius Consulting | +1 425.329.3471&lt;br&gt;&lt;/div&gt;</description><author>dcazzulino</author><pubDate>Wed, 10 Dec 2008 20:22:04 GMT</pubDate><guid isPermaLink="false">New Post: Using XIncludingReader with XPionter + Namespaces 20081210082204P</guid></item><item><title>New Post: Using XIncludingReader with XPionter + Namespaces</title><link>http://www.codeplex.com/MVPXML/Thread/View.aspx?ThreadId=41982</link><description>&lt;div style="line-height: normal;"&gt;Hi,&lt;br&gt;
I'm readng a .xml file with:&lt;br&gt;
var xir = new XIncludingReader(&amp;quot;x.xml&amp;quot;);&lt;br&gt;
var ccXml = XDocument.Load(xir);&lt;br&gt;
&lt;br&gt;
The x.xml file looks like this:&lt;br&gt;
&lt;br&gt;
&amp;lt;?xml version=&amp;quot;1.0&amp;quot;?&amp;gt;&lt;br&gt;
&amp;lt;a:top-level &lt;br&gt;
&amp;nbsp; xmlns:scc=&amp;quot;http://www.blablabla.coml/x&amp;quot;&lt;br&gt;
&amp;nbsp; xmlns:xi=&amp;quot;http://www.w3.org/2003/XInclude&amp;quot;&amp;gt;&lt;br&gt;
&amp;nbsp; &amp;lt;a:element&amp;gt;&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;xi:include href=&amp;quot;y.xml&amp;quot; xpointer=&amp;quot;xpointer(/a:top-level /a:element)&amp;quot;/&amp;gt;&lt;br&gt;
&amp;nbsp; &amp;lt;/a:element&amp;gt;&lt;br&gt;
&amp;lt;/a:top-level &amp;gt;&lt;br&gt;
&lt;br&gt;
The reader fails to find the xpath expression...&lt;br&gt;
What do I need to do to make the XIncludingReader to work properly? 
&lt;/div&gt;</description><author>damageboy</author><pubDate>Wed, 10 Dec 2008 18:01:16 GMT</pubDate><guid isPermaLink="false">New Post: Using XIncludingReader with XPionter + Namespaces 20081210060116P</guid></item><item><title>New Post: API Documentation</title><link>http://www.codeplex.com/MVPXML/Thread/View.aspx?ThreadId=39674</link><description>&lt;div style="line-height: normal;"&gt;Hi&lt;br&gt;
&lt;br&gt;
I am trying to view the API documentation at work, where I only have access to IE6, but the documentation is not displaying and I cannot read it.&lt;br&gt;
&lt;br&gt;
Can somebody please point me in the direction of a CHM help file? I have also tried to build the DocSite project after downloading the source code (and Sandcastle and DocProject) but can't get it to be build.&lt;br&gt;
&lt;br&gt;
Basically, there's no way for me to access the API documentation, and I would appreicate some help very much!&lt;br&gt;
&lt;br&gt;
Thanks&lt;br&gt;
Riko
&lt;/div&gt;</description><author>riko</author><pubDate>Tue, 11 Nov 2008 14:11:03 GMT</pubDate><guid isPermaLink="false">New Post: API Documentation 20081111021103P</guid></item><item><title>New Post: Where's the msi installer and where are the installation instructions?</title><link>http://www.codeplex.com/MVPXML/Thread/View.aspx?ThreadId=34269</link><description>&lt;div style="line-height: normal;"&gt;After some research, I found the installer here:&lt;br&gt;
&lt;br&gt;
http://www.PowerVB.com/XPathMania/Mvp.Xml_XPathMania_1.0RC1.1VS2008.zip&lt;br&gt;
&lt;/div&gt;</description><author>abdu</author><pubDate>Tue, 26 Aug 2008 08:31:04 GMT</pubDate><guid isPermaLink="false">New Post: Where's the msi installer and where are the installation instructions? 20080826083104A</guid></item><item><title>New Post: Where's the msi installer and where are the installation instructions?</title><link>http://www.codeplex.com/MVPXML/Thread/View.aspx?ThreadId=34269</link><description>&lt;div style="line-height: normal;"&gt;&lt;br&gt;
The bin zip doesn't contain the msi installer plus there are no installation instructions. &lt;br&gt;
&lt;br&gt;
A message mentions a video from dnrtv about the tool. The developer spends like 8 minutes talking about the tool and then jumps straight to the 'Other Windows' menu option where he shows the tool. Where's the part that shows how to install it so that it shows up in that menu option!!? Did I miss it?&lt;br&gt;
&lt;/div&gt;</description><author>abdu</author><pubDate>Tue, 26 Aug 2008 08:11:43 GMT</pubDate><guid isPermaLink="false">New Post: Where's the msi installer and where are the installation instructions? 20080826081143A</guid></item><item><title>New Post: Need help debugging MvpXslTransform</title><link>http://www.codeplex.com/MVPXML/Thread/View.aspx?ThreadId=32552</link><description>&lt;div style="line-height: normal;"&gt;Hi,&lt;br&gt;
I'm having problems getting MvpXslTransform to work properly - can someone help?&lt;br&gt;
Here's my code:&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; public XmlReader GetXmlAsReader()&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; {&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; XElement qualification = GetQualification();&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; XmlReader reader = null;&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; XmlInput input = new XmlInput(qualification.CreateNavigator());&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; MvpXslTransform transform = new MvpXslTransform(true);&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; try { transform.Load(GetStylesheet()); }&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; catch (Exception ex) { ... }&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; try { reader = transform.Transform(input, null); }&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; catch (Exception ex) { ... }&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; return reader;&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;br&gt;
&lt;br&gt;
The output of the reader (if, say, I output to a file) is an empty file. I don't understand why.&lt;br&gt;
I basically need some ideas on how to debug this to find out why it's not working. I'm not very familiar with XmlReaders, and inspecting the properties &amp;amp; methods doesn't really highlight anything to me. &lt;br&gt;
&lt;ul&gt;
    &lt;li&gt;GetStylesheet() returns an XmlReader (but I've also tried with just a URI).&lt;/li&gt;
    &lt;li&gt;The XmlInput seems to be OK, although when I check it in the debugger my xml file is enclosed by &amp;quot;{&amp;quot; and &amp;quot;{&amp;quot; - is that to be expected?&lt;/li&gt;
    &lt;li&gt;I've used the stylesheet with a XslCompiledTransform, and it works as expected.&lt;/li&gt;
&lt;/ul&gt;
Any ideas, suggestions or pointers will be warmly welcomed!&lt;br&gt;
Thanks in advance,&lt;br&gt;
Peter.&lt;br&gt;
&lt;br&gt;
&lt;br&gt;
&lt;/div&gt;</description><author>PeteM</author><pubDate>Wed, 30 Jul 2008 11:53:16 GMT</pubDate><guid isPermaLink="false">New Post: Need help debugging MvpXslTransform 20080730115316A</guid></item><item><title>New Post: integration in VS2008, how-to?</title><link>http://www.codeplex.com/MVPXML/Thread/View.aspx?ThreadId=25950</link><description>&lt;div style="line-height: normal;"&gt;If you check in the comments of Don's blog (&lt;a href="http://donxml.com/allthingstechie/archive/2006/07/07/Intro-to-XPathmania-_2D00_-Extending-Visual-Studio-2005-to-Support-XPath-Development.aspx"&gt;http://donxml.com/allthingstechie/archive/2006/07/07/Intro-to-XPathmania-_2D00_-Extending-Visual-Studio-2005-to-Support-XPath-Development.aspx&lt;/a&gt;)&lt;br&gt;
you'll see that someone's created an installer for VS2008.&lt;br&gt;
&lt;a href="http://www.PowerVB.com/XPathMania/Mvp.Xml_XPathMania_1.0RC1.1VS2008.zip"&gt;http://www.PowerVB.com/XPathMania/Mvp.Xml_XPathMania_1.0RC1.1VS2008.zip&lt;/a&gt;&lt;br&gt;
&lt;br&gt;
Cheers,&lt;br&gt;
Pete.&lt;br&gt;
&lt;/div&gt;</description><author>PeteM</author><pubDate>Wed, 30 Jul 2008 11:26:06 GMT</pubDate><guid isPermaLink="false">New Post: integration in VS2008, how-to? 20080730112606A</guid></item></channel></rss>