Shad Storhaug

Results 300 comments of Shad Storhaug

Another thing I just thought of to help you reduce the memory footprint (assuming you are already using the latest version of MvcSiteMapProvider already that was released yesterday) is to...

Unfortunately, not. There is a limitation of around 10,000-20,000 nodes in the sitemap with the current design because it loads all nodes into memory and keeps them there. My suggestion...

FYI - I have created a new issue #345 to discuss requirements to address adding an extension point that can be used to provide URLs that are not registered in...

The XmlSiteMapResult is injected into a plain old MVC controller called [XmlSiteMapController](https://github.com/maartenba/MvcSiteMapProvider/blob/master/src/MvcSiteMapProvider/MvcSiteMapProvider/Web/Mvc/XmlSiteMapController.cs). My suggestion is to completely replace this controller with your own (including your own route registration) and make...

Without seeing your code, I can only guess. But it looks like you are getting the results from a View instead of the results from an XmlWriter injected into your...

I haven't spotted the problem in your code, but the error message clearly indicates it is trying to return a View and attach the Layout.cshtml page to the View. I...

I am pretty sure this is a bug. The explicit resource localization is setup in the MvcMusicStore demo and has been tested pretty thoroughly, but as far as I know...

Okay, I'm not sure I fully understand exactly how implicit localization is supposed to work, but Microsoft set the value to the name of the XML file. We can't do...

Well, the first problem - setting the key - has been addressed. The second problem - the fact that the key changes when the domain name does - is not...

Ok, [v4.3.0](https://github.com/maartenba/MvcSiteMapProvider/releases/tag/v4.3.0) has been released. It is now setting the value of the objectKey to that of the SiteMapCacheKey. Sorry it took so long :).