Paul Feuer - 2003-11-18

Logged In: YES
user_id=734411

i had this same prob, but worked thru it by changing the end
of WebRobot.retrieveUrl() where it handles the redirect:

comment out
//URL u2 = new URL(u,ref);

and change to:
URL redir = new URL(ref);
URL u2 = new URL(u.getProtocol(), u.getHost(),
u.getPort(), redir.getPath());
log.info("Going to "+u2.toString());