If you get a 200 response, as Steve (the other Steve) suggested, then read this to find your file.
Get()
- Performs an HTTP GET request using the Url property and retrieves the response.
If the SaveResponse property is true, the response will be saved in a file and the GotFile event will be triggered. The ResponseFileName property can be used to specify the name of the file.
If the SaveResponse property is false, the GotText event will be triggered.
You have to tell your device where to store the file and give it a name.
set Web.ResponseFileName to something like \super90Files\newXML.txt perhaps should work. or .xml
then when you try to read the file, you need to include the path \super90Files\newXMLtxt .... you can do this in one step or using a
join \super90files\
newXML.txt
Your device probably saved the file you wanted with an arbitrary name, some where on your device... sorry, I can not remember the default directory if you do not set Web.ResponseFileName.
Try making the changes to the blocks.. the set Web.Response....needs to preceded your request.
Regards,
Steve