I am trying to control InternetExplorer.Applicationthrough the COM interface using Perl, Win32::OLEand information from MSDN . My goal is to understand as much as possible what IE is doing. (Related to this question.)
IE uses events to notify my program when it has finished the various steps of processing a specific URL ( NavigateComplete2, DownloadComplete DocumentComplete). He can also tell my program about various errors that he encounters ( NavigateError2). I believe that part of my problem is solved quite well.
I would also like to reliably detect if IE is being redirected by the server. First of all, I am concerned about the HTTP 30x status codes. Is there a way to do this, either using COM automation or using a different route?
source
share