Hi,
> 1. The page structure has changed and it failing to correctly parse the
> mirror URL out of the page so the URL it manufactures times out
And Ive confirmed (in the debugger) that exactly what is happening. This code
below in MirrorURLUtil.as is no longer parsing the correct mirror name out of
the content returned.
var result:String = _internetUtil.result;
_mirrorURL = (result.search("<p>") != -1) ?
result.substring(3, result.length - 4) :
result;
Issue being I think that the cgi script is returning full page of HTML which is
not what this code expects.
Thanks,
Justin