azure

Indexing static HTML blob storage content with Azure Cognitive Search is not working as expected

依然范特西╮ 提交于 2021-02-11 15:12:37
问题 I'm working on indexing static HTML content in blob storage. The documentation states that preprocessing analyzers will strip surrounding HTML tags when indexing content from that data source. However, our content value is always the entire raw HTML document. I'm also unable to pull out the value of our "meta description" tags. According to the documentation on Indexing Blob Storage, HTML content should automatically produce a metadata_description property, but the value is always null. I've

How to store email attach csv file content as variable in azure logic app

风格不统一 提交于 2021-02-11 14:54:30
问题 I get a csv file as email attachment.I need a way to read email attachment and save that attachment as variable or directly read the attach file content and get data or store in blob storage.( If csv file save in blob , how we can read it. ) note - This csv file has data about system processes.I want to get only yes process from the attach csv file and continue the integration. ex- onboarding process | yes billing process | no 回答1: For your requirement about " If csv file save in blob , how

Node JS Deployment to Azure Web App Service ERROR - “You do not have permission to view this directory or page.”

纵饮孤独 提交于 2021-02-11 14:54:09
问题 I've been following this tutorial on how to deploy a NodeJS app to Azure: https://www.youtube.com/watch?v=RWdxkhajCg0&fbclid=IwAR10Q6x8PbqLDAZZzzMX9Nvp_jEGiN_Ts4V8XLJbzF6xreq6_MB_vsbIqx8 Firstly, I did everything exactly the same way as the author showed and it all worked. In the video, they're using Linux Web App Service. Since I have to get familiar with the Windows App Services (that's what I am required to learn and use for my job), I decided to deploy exactly same app to the Windows Web

Function App Deployment Failed - The remote server returned an error: (403) Forbidden

懵懂的女人 提交于 2021-02-11 14:49:18
问题 Deploying to an existing storage account on a subnet with service endpoints for Microsoft.EventHub, Microsoft.KeyVault, Microsoft.Storage and Microsoft.Web. Storage account is on a selected vnet: 回答1: It looks like you want to restrict access to your storage account from your function app in a virtual network. If so, you need to enable the storage account endpoint in a subnet and enable your function app to integrate with that subnet. Your function app should host on an app service plan which

Azure batch task dependencies: copy files from previous

无人久伴 提交于 2021-02-11 14:41:36
问题 I have a Azure Batch scenario where I have a chain of Tasks which are run after each other. Dependencies are set correctly so they run nicely after each other. However I need to copy all files from the previous Task's folder to the new Task's folder before execution. I do not know in advance how many and what files there will be so I just want to copy everything. I could not find a way to accomplish this with the Batch client library (https://docs.microsoft.com/en-us/dotnet/api/overview/azure

Query last data of different documents in Azure Cosmos db (SQL)

这一生的挚爱 提交于 2021-02-11 14:38:38
问题 Sample data : {age: 20, ts: '00:00'}, {age: 20, ts: '00:01'}, {age: 30, ts: '00:00'}, {age: 30, ts: '00:01'}, {age: 40, ts: '00:00'}, {age: 40, ts: '00:01'}, {age: 40, ts: '00:02'} Expected output: [{age: 20, ts: '00:01'}, {age: 30, ts: '00:01'}, {age: 40, ts: '00:02'}] Tried SELECT * FROM c where c.age in (20, 30, 40) order by c.ts desc But the result selected all data. 回答1: Please try something like the following: SELECT max(c.ts) as ts, c.age FROM c where c.age in (20, 30, 40) Group By c

Azure Create AD App with AllowImplicit user is not albe to login

非 Y 不嫁゛ 提交于 2021-02-11 14:37:48
问题 i am trying to create a azure ad app and set client id in that app, but some how i am not able to login in that app throwing me error like "You can't sign in here with a personal account. Use your work or school account instead." view image i've set all the required delegate permission to that app view image i've set "Accounts in any organizational directory (Any Azure AD directory - Multitenant) and personal Microsoft accounts (e.g. Skype, Xbox)" this permission also view image if some one

Does Microsoft MSAL Resource Owner Password Credentials(ROPC) Grant authorization support ClientConfidentialApplicaton class to acquire Token?

丶灬走出姿态 提交于 2021-02-11 14:35:42
问题 MSAL for Python supports ROPC flow(Resource Owner Password Credentials Grant) supports token retrieve for Public Applications, Can we similarly use confidential client class in MSAL for python? The following links seem to say no--> https://github.com/AzureAD/microsoft-authentication-library-for-python/wiki/Username-Password-Authentication Also, if we can use both Public & Confidential client, which is recommended from a security standpoint? The application is a service app that runs behind

How to run azure media player on android

喜欢而已 提交于 2021-02-11 14:31:52
问题 I have a requirement to integrate azure media player in an android app. All I can see in the documentation is sample and information on how to add this in an HTML file. I have a "...mainfest" file, and I need to play it from the android app. I need to know if there is any SDK available for android, or do i need to host a page on server, which can play these videos? Edited I checked sample player here, when I pass my video URL to it, it loads video fine with or without "(format=m3u8-aapl-v3)"

Upload Zip Chunks and Join them on Azure Platform

两盒软妹~` 提交于 2021-02-11 14:30:00
问题 I want to know that.. If I make chunks of a big Zip file and upload all chunks on Azure Cloud Storage in Container Blobs. Can i Join these chunks on Azure Platform.? for chunking i am using this code which is also generating .bat file for rejoining the chunks.. public void SplitFile(){ int numericUpDown = 100;//in MB string PathToCopyChunks = ""; // path to store chunks and ( .bat ) file string FilePathMakeChunks = DirectoryNameToPutScannedData; //the path of file to make chunks. try{ int kbs