I've run into an interesting exception. On one of my production servers, occasionally I'll get the following exception.

System.NullReferenceException: Object reference not set to an instance of an object.
    at System.Xml.DocumentXPathNavigator.get_NameTable()
    at System.Xml.Xsl.Runtime.XmlQueryContext.get_DefaultNameTable()
    at System.Xml.Xsl.Runtime.XmlQueryRuntime..ctor(XmlQueryStaticData data, Object defaultDataSource, XmlResolver dataSources, XsltArgumentList argList, XmlSequenceWriter seqWrt)
    at System.Xml.Xsl.XmlILCommand.Execute(Object defaultDocument, XmlResolver dataSources, XsltArgumentList argumentList, XmlSequenceWriter results)
    at System.Xml.Xsl.XmlILCommand.Execute(Object defaultDocument, XmlResolver dataSources, XsltArgumentList argumentList, XmlWriter writer, Boolean closeWriter)
    at System.Xml.Xsl.XmlILCommand.Execute(IXPathNavigable contextDocument, XmlResolver dataSources, XsltArgumentList argumentList, XmlWriter results)
    at System.Xml.Xsl.XslCompiledTransform.Transform(IXPathNavigable input, XsltArgumentList arguments, TextWriter results)
    at sftControls.SearchListLandingPage.getHtml(IXPathNavigable document, String Xsl, String headerLinks)

Opening up the IL and looking through each method suggests that the DocumentXPathNavigator => this.document is null. What's strange is that I can in no way duplicate this issue locally or on our test servers.

A little background, and this might be the key... This is a web application(running .Net 3.5) that caches the XmlDocument that gets passed into XslCompiledTransform.Transform(). Our caching is serviced through a distributed cache server. The XmlDocument is serialized and cached so a reference to the specific object should not continue to exist. That leads me to believe that either something is explicitly preventing this.document from ever being set when the implicit XmlDocument -> DocumentXPathNavigator happens or some reference somewhere is removed while the Transform() is running. Either way I am perplexed.

So, I guess my questions are:

  1. Has anyone else seen this before?
  2. Does anyone know what could be causing it or how to deal with it?

Thanks

EDIT:
After further thinking about this, the only thing that would make sense is that it's a race condition. The caching appliance is somehow expiring the object while the application is using the object.

EDIT/EDIT:
.Net 3.5, the assembilies being referenced above are 2.0

link|improve this question
Which .NET version? – John Saunders Jan 3 at 18:16
It sounds like the input is incorrect. Have you validated it? – Brad Jan 10 at 21:07
If you follow the stack trace, the input is actually validated before it ever makes it to this point. It's possible it changes between when it's validated and when it gets to this point. – John Feb 2 at 17:57
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.