azure-storage

Can the new Azure File Service be used from Azure WebSites?

我只是一个虾纸丫 提交于 2020-01-02 04:15:28
问题 The title pretty much says it all... Microsoft just launched the new File Services on Azure. (http://blogs.msdn.com/b/windowsazurestorage/archive/2014/05/12/introducing-microsoft-azure-file-service.aspx) Can I use it from within a Azure WebSite? Or is it limited to use from VMs and CloudServices due to "net use" restrictions? Thanks 回答1: Yes - use the REST API - the Azure website MUST be in the same region as the storage account. Once your share is created, it can be accessed via the SMB or

Is it possible to have the Windows Azure emulator open the browser to a URL other than 127.0.0.1

让人想犯罪 __ 提交于 2020-01-01 16:58:48
问题 Simple question but lots of meaning/discussion behind!!! Is it possible to have the Windows Azure emulator open the browser to a URL other than 127.0.0.1 and port 81? 回答1: Follow the steps to change 127.0.0.1 to desire IP Compute Emulator Settings: Go to %Program Files%\Microsoft SDKs\Windows Azure\Emulator\devfabric Take backup of “DevFC.exe.config” so that if something goes you can revert it back. Change following settings to desired IP address range and subnet: <add key="StartIPAddress"

Why isn't my TakeLimit honored by TableQuery?

左心房为你撑大大i 提交于 2020-01-01 03:12:08
问题 I'd like to fetch top n rows from my Azure Table with a simple TableQuery. But with the code below, all rows are fetched regardless of my limit with the Take. What am I doing wrong? int entryLimit = 5; var table = GetFromHelperFunc(); TableQuery<MyEntity> query = new TableQuery<MyEntity>() .Where(TableQuery.GenerateFilterCondition("PartitionKey", QueryComparisons.Equal, "MyPK")) .Take(entryLimit); List<FeedEntry> entryList = new List<FeedEntry>(); TableQuerySegment<FeedEntry> currentSegment =

How to create a shared access signature with a stored access policy for an Azure Blob container in Azure Portal?

淺唱寂寞╮ 提交于 2020-01-01 02:31:06
问题 I read about shared access signatures generated with stored access policies for Azure Storage from here. I also read how to create this shared access signature with stored access policies for Azure Storage using PowerShell here. However, I want to do the above using Azure Portal. I know how to generate an ad-hoc shared access signature. I also know how to create a stored access policy for a container in my Azure Blob. How do I create a shared access signature with a stored access policy for

Using SignalR with Azure Table Storage - What architecture?

空扰寡人 提交于 2019-12-31 17:57:21
问题 I have a smart grid system where multiple hardware devices are sending raw sensor data to an Azure Queue. Each device sends a single data packet once every minute. Multiple Worker Roles process the data packets on the queue and push the data to Table Storage. I have a Web Role which holds the application for users to view their device data and a host of other alerts and messages relating to their smart energy system. At the moment the web application just uses ajax polling at one minute

How to execute an Azure table storage query async? client version 4.0.1

让人想犯罪 __ 提交于 2019-12-31 08:32:58
问题 Want to execute queries Async on Azure Storage Client Version 4.0.1 There is NO method ExecuteQueryAsync().. I am missing something? Should we continue to use the ExecuteQuerySegmentedAsync still? Thanks. 回答1: I end up making an extension method to use ExecuteQuerySegmentedAsync. I am not sure whether this solution is optimal, if anybody has any comment please don’t hesitate. public static async Task<IList<T>> ExecuteQueryAsync<T>(this CloudTable table, TableQuery<T> query, CancellationToken

Access Azure blob storage using C++ [closed]

99封情书 提交于 2019-12-31 07:15:09
问题 As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance. Closed 7 years ago . Was looking around and found a few answers that suggests that I should use REST. But how would I integrate this in Qt/c++? Could

Hide data in an azure table from a specific audience

纵然是瞬间 提交于 2019-12-31 03:38:04
问题 I have a resource group in Azure which contains cloud service and a storage account. I want to give access to the resource group to my developers so that they can access the resources and make changes. However, there is one particular table in the storage account which contains sensitive user details. The table is being updated through our client app using SAS tokens. I want only few selected people from my team to be able to see the complete contents of the table. Is there any way in azure

Ambiguous CloudStorageAccount in aspnetcore when used with bot framework

旧城冷巷雨未停 提交于 2019-12-30 14:20:05
问题 I have just upgraded bot framework project which is based on SDK v4 and built using aspnet core and now I end up getting conflict for CloudStorageAccount class. It says The type 'CloudStorageAccount' exists in both 'Microsoft.Azure.Storage.Common, Version=9.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35' and 'Microsoft.WindowsAzure.Storage, Version=8.1.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35' Anyone also faced the same issue? Please note that I have already tried to use

Ambiguous CloudStorageAccount in aspnetcore when used with bot framework

為{幸葍}努か 提交于 2019-12-30 14:19:23
问题 I have just upgraded bot framework project which is based on SDK v4 and built using aspnet core and now I end up getting conflict for CloudStorageAccount class. It says The type 'CloudStorageAccount' exists in both 'Microsoft.Azure.Storage.Common, Version=9.4.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35' and 'Microsoft.WindowsAzure.Storage, Version=8.1.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35' Anyone also faced the same issue? Please note that I have already tried to use