Im trying to get at Rss reader working using the XmlSax library, which I have the parseing part working fine, once I manually download the xml.
Im having trouble downloading the xml file thought.
The feed is dynamically created thorough a php script, and I cant seem to figure it out how to save it within the program so I can parse it.
the feed url looks like this
www.somesite.com/classifieds/newads.php?type=new
im trying to use the download service to retrieve it
Im having trouble downloading the xml file thought.
The feed is dynamically created thorough a php script, and I cant seem to figure it out how to save it within the program so I can parse it.
the feed url looks like this
www.somesite.com/classifieds/newads.php?type=new
im trying to use the download service to retrieve it
B4X:
DownloadService.URL = "www.somesite.com/classifieds/newads.php?type=new"
DownloadService.Target = File.OpenOutput(File.DirDefaultExternal, "CLASSIFIEDS.xml", False)
StartService(DownloadService)