Brendan,
> I've been trying to download a file using the URLMonLibrary class in 5.0.1
> on Windows 2000 doing something like this:
>
> u := URLMonLibrary new.
> u urlDownload: '
http://localhost/localstart.asp' toFile: 'test.asp'.
Just a vague possibility but have you tried using the default URLMonLibrary
rather than creating a new one?. The #default singleton instance is
automatically opened and is the usual way to use ExternalLibrary subclasses.
The test below seems to indicate that if you do #new another instance then
you also need to #open (and #initialize?) it.
URLMonLibrary new isOpen ==> false
URLMonLibrary default isOpen ==> true
Ian