Simulating HTTP Requests
Hey everyone,
I want to test out my servlet/jsp application by simulating a huge amount of requests coming from about 50 different referers. So i thought i could have an array of referer Strings, and then create a bunch of HttpServletRequests by randomly picking from the array, but HttpServletRequest being an abstract interface makes it difficult to do this :-) Any ideas as to how might I go about doing this?
Any ideas?

