} else if (sSourceURI.startsWith("http://")) {
try {
URL oUrl = new URL(sSourceURI);
HttpURLConnection oCon = (HttpURLConnection) oUrl.openConnection();
int iResponseCode = oCon.getResponseCode();
oCon.disconnect();
bExists = (iResponseCode>=200 && iResponseCode<=299);
} catch (MalformedURLException mue) {
throw new IOException(mue.getMessage());
}
} else if (sSourceURI.startsWith("https://")) {