Im having problems whith Htmlunit, i disable javascript and set timeout to 10000 before call getpage, i hope an exception after timeout but htmlunit look wait forever. After some search i realize someone in year of 2009 had the same problem (http://old.nabble.com/Connection-timeout-not-working-td26197231.html), he was complain about "Connection timeout not working" and about some values in timeout dont work but until now in year of 2011 dont get any answer !! Someone here (What Exception is thrown on timeout ?) was asking about wath exception is throw but i think its dont it throw always. I cant get an answer from this link (Apache HttpClient setTimeout). You can see another person asking about stop in timeout here (Terminat or Stop HtmlUnit)
You can see how crazy its if try :
milisecReqTimeout = 10;
while(true)
{
_webclient.setTimeout(milisecReqTimeout);
milisecReqTimeout = milisecReqTimeout + 10;
_htmlpage = _webclient.getPage(url);
}
Thanks a lot