1.
X++:
public static void TEST_DownloadString (Args _args)
{
System.Net.WebClient webClient = new System.Net.WebClient();
;
info(webClient.DownloadString('http://axaptapedia.com'));
}
2.
X++:
static void Job8(Args _args)
{
XmlDocument doc = new XMLDocument();
XmlNodeList nodeList;
XMLElement element;
;
doc.load(@'http://www.axaptapedia.com/index.php?title=Special:Recentchanges&feed=rss');
nodeList = doc.selectNodes(@'//item');
for(element = nodeList.nextNode(); element; element = nodeList.nextNode())
{
info(element.getNamedElement('title').text());
}
}