azure-blob-storage

Hosting multiple Angular apps on one Azure Blob Storage

南楼画角 提交于 2020-06-25 07:17:50
问题 At work we are hosting multiple Angular JS apps on one Azure Blob Storage. There is an Azure Function which acts as a proxy and navigates to the suitable app folder and html file. Now I want to replace some of the Angular JS apps with Angular 9 apps. But the above-mentioned approach which works fine for the Angular JS apps does not work with the Angular 9 app. If I host the Angular 9 app as static website on a different storage, it works fine. But as it is not possible to host more than one

Hosting multiple Angular apps on one Azure Blob Storage

末鹿安然 提交于 2020-06-25 07:17:07
问题 At work we are hosting multiple Angular JS apps on one Azure Blob Storage. There is an Azure Function which acts as a proxy and navigates to the suitable app folder and html file. Now I want to replace some of the Angular JS apps with Angular 9 apps. But the above-mentioned approach which works fine for the Angular JS apps does not work with the Angular 9 app. If I host the Angular 9 app as static website on a different storage, it works fine. But as it is not possible to host more than one

How upload file to blob storage and reference it from cosmosdb document in attachment

我怕爱的太早我们不能终老 提交于 2020-06-13 09:41:41
问题 I'm new to CosmosDb and azure blob storage, as a requirement I need to reference a file uploaded to azure blob storage from a document in CosmosDb and use it in the attachment section to save the metadata. I know the json metadata stucture should be like this: { "id":"image13d65101-90c4-4c2a-a423-fbf221c73233", "contentType":"image/jpg", "media":"www.bing.com", "_rid":"rnYYAMVFUAUBAAAAAAAAAEC+LNM=", "_ts":1408056025, "_self":"dbs\/rnYYAA==\/colls\/rnYYAMVFUAU=\/docs\/rnYYAMVFUAUBAAAAAAAAAA==\

How upload file to blob storage and reference it from cosmosdb document in attachment

♀尐吖头ヾ 提交于 2020-06-13 09:40:05
问题 I'm new to CosmosDb and azure blob storage, as a requirement I need to reference a file uploaded to azure blob storage from a document in CosmosDb and use it in the attachment section to save the metadata. I know the json metadata stucture should be like this: { "id":"image13d65101-90c4-4c2a-a423-fbf221c73233", "contentType":"image/jpg", "media":"www.bing.com", "_rid":"rnYYAMVFUAUBAAAAAAAAAEC+LNM=", "_ts":1408056025, "_self":"dbs\/rnYYAA==\/colls\/rnYYAMVFUAU=\/docs\/rnYYAMVFUAUBAAAAAAAAAA==\

Azure Data Factory connecting to Blob Storage via Access Key

佐手、 提交于 2020-05-29 04:12:27
问题 I'm trying to build a very basic data flow in Azure Data Factory pulling a JSON file from blob storage, performing a transformation on some columns, and storing in a SQL database. I originally authenticated to the storage account using Managed Identity, but I get the error below when attempting to test the connection to the source: com.microsoft.dataflow.broker.MissingRequiredPropertyException: account is a required property for [myStorageAccountName]. com.microsoft.dataflow.broker

Azure Data Factory connecting to Blob Storage via Access Key

霸气de小男生 提交于 2020-05-29 04:12:13
问题 I'm trying to build a very basic data flow in Azure Data Factory pulling a JSON file from blob storage, performing a transformation on some columns, and storing in a SQL database. I originally authenticated to the storage account using Managed Identity, but I get the error below when attempting to test the connection to the source: com.microsoft.dataflow.broker.MissingRequiredPropertyException: account is a required property for [myStorageAccountName]. com.microsoft.dataflow.broker

Is there a way to get file structure from azure blob?

别来无恙 提交于 2020-05-09 07:28:26
问题 I'm new to Azure and playing around with blobs in my .Net application. I want to be able to get structure with folders, subfolders and files inside. For now I've figured a way to get the files from all folders and subfolders altogether with parents. Is there any way to get folder structure some other way than parse Prefix of those files' parents? File structure is the following: root container -folder1 -subfolder1 -file -file -subfolder2 -file -file -file I've tried this, but it only gives me

How to create a table in SQL Database from a CSV file in Blob which contain all the column name with its data type through Data Flow or ADF pipeline?

只愿长相守 提交于 2020-04-30 07:13:19
问题 I am having a CSV file in my Azure Blob Storage which contain all the column name with its data Data type of respective tables. I want to create a table in SQL Database from this Blob file with the same column name with its corresponding datatype without doing the mapping. I have created a table through data flow but I have to set the data type of each column manually. But I don't want to do this. When I create a table it should accept the same data types in the source as well as synch which

Issue on ClickOnce hosting on Azure

℡╲_俬逩灬. 提交于 2020-04-16 02:32:49
问题 Following this article, I have successfully hosted my ClickOnce app to Azure Blob Storage. But what URL should a user use to install the app. For example, when you publish an app to a website using VS2019 , it creates a publish.html page whose URL a user can use to install the app. But here we don't have that publish.html page. So, what we do in that case? 回答1: nam. I am very happy to tell you how to generate publish.htm. After my test, I found the reason why you can't generate piblish.htm.

Azure Blob Storage “Authorization Permission Mismatch” error for get request with AD token

走远了吗. 提交于 2020-04-09 19:17:21
问题 I am building an Angular 6 application that will be able to make CRUD operation on Azure Blob Storage. I'm however using postman to test requests before implementing them inside the app and copy-pasting the token that I get from Angular for that resource. When trying to read a file that I have inside the storage for test purposes, I'm getting: <Code>AuthorizationPermissionMismatch</Code> <Message>This request is not authorized to perform this operation using this permission. All in production