Quantcast
Channel: Building a Google Product Feed in .Net (C#)? - Stack Overflow
Browsing all 3 articles
Browse latest View live

Answer by Colin O'Dell for Building a Google Product Feed in .Net (C#)?

What if, instead of doing this:xw.WriteStartElement("rss version=\"2.0\"");xw.WriteAttributeString("xmlns", "g", null, "http://base.google.com/ns/1.0");You did something like...

View Article


Answer by Jon Skeet for Building a Google Product Feed in .Net (C#)?

The problem is that you're trying to create an element with a name of rss version="2.0". Instead, you should be creating an element with a name of rss, and setting the version attribute to have a value...

View Article

Building a Google Product Feed in .Net (C#)?

Below is the schema I am trying to conform to:<?xml version="1.0"?><rss version="2.0" xmlns:g="http://base.google.com/ns/1.0"><channel><title>The name of your data...

View Article
Browsing all 3 articles
Browse latest View live