Yes, it's time to move 🙂
If you don't know PERL, I will not recommend you that solution, because
you have to deal with the authentification system "by hand",
it's not just about getting a regular URL
(otherwise, something simple like :
use LWP::Simple;
$content = get($URL)
with LWP (Library for Web Programming in PERL), will be enough )
Another way of simply simulating connections can be :
having a index.html file in the protected directory and having a META refresh
like this :
<html>
<head>
<meta http-equiv='refresh' content='1'>
</head>
<body>
a simple text
</body>
</html>
will force the refresh of the page each second inside the browser,
so you just have to open dozens of windows to get your Apache server
quite busy 🙂
Or may be using some web spider/crawler software ?
(the software you normaly use to get a local copy of a distant web server)
see here : http://en.wikipedia.org/wiki/Web_crawler