}
}
protected static CloudBlobClient createBlobClient(String storageAccountName, String storageAccountKey) throws InvalidKeyException, URISyntaxException {
String storageconnectionstring = "DefaultEndpointsProtocol=http;AccountName="+ storageAccountName +";AccountKey=" + storageAccountKey;
CloudStorageAccount storageAccount = CloudStorageAccount.parse(storageconnectionstring);
// Create the blob client
CloudBlobClient blobClient = storageAccount.createCloudBlobClient();
return blobClient;
}