protected Session createSession() throws JSchException {
JSchLogger.init();
JSch sch = new JSch();
Session session = sch.getSession("sshd", "localhost", sshPort);
session.setUserInfo(new SimpleUserInfo("sshd"));
session.connect();
return session;
}
protected void checkHtmlPage(HttpClient client, URL url) throws IOException {
client.setHostConfiguration(new HostConfiguration());