I wonder if anyone can help here.
I currently have an Access database setup to download the ICE XML file using webget, and parse it using the ChilkatXml COM add in.
I have just noticed that this COM-addin has a "httpget" method, which is probably a better way of getting the data rather than using shell webget.exe [address of xml file]
, as the shell command in VBA executes asynchronously and sometimes the file has not downloaded before I wish to proceed with the next program step.
Trouble is, I can plug in the http address but how do I put in user name and password without having to enter it at runtime? The documentation only has the parameters &start_date=<date>; · &end_date=<date> · &late_mod=<last modified time>; · &no_programs=1
etc. Are there other parameters that can be added to this cgi? (I think that it should be last_mod
shouldn't it?)
Any help appreciated!
NICK