proxyPort = Integer.parseInt(proxyServer.substring(colonIndex+1));
proxyServer = proxyServer.substring(0,colonIndex);
// FIXME !
//client.startSession(host, portNumber, proxyServer, proxyPort);
} else {
client.startSession(host, portNumber);
}
// Set the credentials to use - see org.apache.webdav.lib.Credentials
Credentials credentials = new Credentials(userName, userPasswd);
client.setCredentials(credentials);