views:

9

answers:

1

how do i parse an online document (xml file) in gtk, for example the url : http://www.w3schools.com/XML/note.xml contains the xml file.

+1  A: 

You will need to use two auxiliary libraries of GTK to do this: libsoup to download the document, and libxml2 to parse it.

ptomato