Skip to content

Instantly share code, notes, and snippets.

@bjoerntx
Created August 4, 2015 12:48
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bjoerntx/6554b3f6639ef3bcc69a to your computer and use it in GitHub Desktop.
Save bjoerntx/6554b3f6639ef3bcc69a to your computer and use it in GitHub Desktop.
// load the data as XML
XmlDocument doc = new XmlDocument();
doc.Load(Server.MapPath("sample_db.xml"));
// the Web API expects the data as a JSON object
// 'JsonConvert' converts the XML to the required JSON format
string jsonText = JsonConvert.SerializeXmlNode(doc);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment