I created a sitemap generated by a ContentResult however Google keeps telling me my namespace is incorrect. Any ideas?
My Code:
public ContentResult Index()
{
//Build RSS for sitemap
XNamespace ns = "http://www.sitemaps.org/schemas/sitemap/0.9";
const string url = "http://www.openarmssoberliving.com/{0}";
var encoding = Response.ContentEncoding.WebName;
var items = _pagesRepos.Pages.OrderBy(p => p.Id).ToList();
items.Add(new Page { Title = "Contact Us", Slug = "ContactUs", LastModified = items[0].LastModified });
var sitemap = new XDocument(new XDeclaration("1.0", encoding, null),
new XElement(ns + "urlset",
from item in items
select
new XElement(ns + "url",
new XElement(ns + "loc", string.Format(url, (item.Id != 1) ? item.Slug : "")),
new XElement(ns + "lastmod", String.Format("{0:yyyy-MM-dd}", item.LastModified)),
new XElement(ns + "changefreq", "monthly"),
new XElement(ns + "priority", "0.5")
)
)
);
return Content("<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n" + sitemap, "text/xml");
}
Output: http://www.openarmssoberliving.com/Sitemap
Error: Line 2. Your Sitemap or Sitemap index file doesn't properly declare the namespace.