Project Descriptioncomicvine, comics, services, rest, windows mobile 7, wpf, windows 7
A simple c# class that requests some data from Comic Vine services
http://api.comicvine.com/documentation/ and returns an xml file, at least in this first release. We're planning to implement also JSon, etc...
For istance a simple use of this class can be shown by this VB.NET code, the response of the REST services is saved in an xml file:
Dim comic = New
ComicVine(ComicVine.Resources.Issue)
comic.Issue = New
MaruJan.Services.ComicVine.Issue(ComicId)
Dim srWriter As New StreamWriter(ComicId + ".xml")
srWriter.Write(comic.response)
srWriter.Flush()
srWriter.Close()