password = tokens[offset+1];
credential = HttpFactory.makeCredential("Basic");
Base64Encoder base64 = new Base64Encoder(user
+ ":"
+ password);
credential.setAuthParameter("cookie", base64.processString());
proxy = new URL(tokens[offset+2]);
args = user+" "+password+" "+proxy;
} catch (MalformedURLException ex) {
throw new RuleParserException("Invalid target proxy \""
+ tokens[offset]