tags:

views:

916

answers:

3

XPathReader is/ was an implementation of a forward reading XML parser (built on XMLReader) which allowed you to register XPath queries for it to find (or at least a subset of XPath called Sequential XPath). This seems to be the perfect choice for easy access to elements of xml streams, or case where you just need to pull some information out of the start of a large xml document and therefore don't want to load the whole thing into memory.

There seemed to be a flurry of excitement about the open source implementation that one of the MS guys was releasing back in 2003/ 2004, eg:

http://donxml.com/allthingstechie/archive/2004/02/26/430.aspx

http://msdn.microsoft.com/en-us/library/ms950778.aspx

http://www.tkachenko.com/blog/archives/000472.html

But after that the trail seems to dry up. The references to where the implementation was hosted (http://workspaces.gotdotnet.com/xpathreader) no longer seem to work. Does anyone know what happened to it, and why the interested disappeared?

+1  A: 

I suspect that LINQ-to-XML happened. However, the Mvp.Xml project on CodePlex has many features that relate to this. You might want to take a look at the XPointer.NET library they have developed and the XPointerReader.

Also, you might want to take a look at this FastXPathReader on CodeProject (I don't know how effective it is).

As for XPathReader, all I could find were the links you provided and links associated with those. It looks like it disappeared. Like I said, I think LINQ-to-XML was the outcome, but I'm just guessing.

Jeff Yates
Thanks for your reply. Jeff. From what I know of LINQ-to-XML it doesn't really solve the same problem, does it?Unfortunately, even if it does, we can't use LINQ yet as we're still stuck with .Net 2.The CodeProject project is too incomplete to be useful.[cont...]
Phil Nash
[...cont] I might have to look at whether I can recast my current needs in terms of XPointer and use the Mvp stuff.
Phil Nash
I'm not sure that LINQ-to-XML entirely solves the problem - but I wouldn't be surprised if XPathReader was pushed aside because of it. I'm still looking around for something similar. I'll let you know.
Jeff Yates
A: 

It seems that ms released this over here and the install includes source code.

headsling
"Date Published: 5/6/2004" - it's not been maintained
Phil Nash
A: 

I thought LINQ-to-XML built a DOM tree to evaluate the XPaths. Does it work with a stream?

TMN