An exception that is thrown when a connection cannot be established by a client.
130131132133134135136137138139
transportFactory.setTimeout(requestTimeout); client = new XmlRpcClient(url, transportFactory); fileManagerUrl = url; if (!isAlive()) { throw new ConnectionException("Exception connecting to filemgr: [" + this.fileManagerUrl + "]"); } }
171172173174175176177178179180
client = new XmlRpcClient(url, transportFactory); fileManagerUrl = url; if (testConnection && !isAlive()) { throw new ConnectionException("Exception connecting to filemgr: [" + this.fileManagerUrl + "]"); } }
173174175176177178179180181182
client = new XmlRpcClient(url, transportFactory); fileManagerUrl = url; if (!isAlive()) { throw new ConnectionException("Exception connecting to filemgr: [" + this.fileManagerUrl + "]"); } }
175176177178179180181182183184