> I have to fetch and syndicate some data from a atom feed (blogger's) in
> asp.net 2.0; I read I need a xml schema to work on the xml as a
> datagrid, but I can't find on the internet a atom schema. Where can I
> get it?
The xsd.exe tool in the .NET framework SDK can infer a schema from an
example Atom feed.
Also the Atom specification comes with a Relax NG Compact Schema
<URL:http://tools.ietf.org/html/rfc4287#appendix-B>, it might be worth a
try to find a schema converter from that schema format to the W3C XSD
schema langugage: <URL:http://www.thaiopensource.com/relaxng/trang.html>
I haven't tried that but it looks promising. Let us know whether you
have success that way.

Signature
Martin Honnen --- MVP XML
http://JavaScript.FAQTs.com/
Hakuin - 09 Feb 2008 10:10 GMT
> I haven't tried that but it looks promising. Let us know whether you
> have success that way.
It worked great! Thanks!!