sessionProxy = new ClientConnection(host, port, path,
database, isTLS, isTLSWrapper, user, password, zoneSeconds);
isNetConn = true;
} else if (connType == DatabaseURL.S_HTTP
|| connType == DatabaseURL.S_HTTPS) {
sessionProxy = new ClientConnectionHTTP(host, port, path,
database, isTLS, isTLSWrapper, user, password, zoneSeconds);
isNetConn = true;
} else { // alias: type not yet implemented
throw JDBCUtil.invalidArgument(connType);
}