azure

“No subscriptions found for Azure Account”

◇◆丶佛笑我妖孽 提交于 2021-02-19 02:30:46
问题 In Azure trial subscription my MSN email is associated with an other account with owner rights. But when I try to access Azure publishSettings it generates an error No Subscription fouund . Please help me to resolve the issue. Do I need Co-administrator or Service Administrator rights along with owner rights ? 回答1: Service Administrator and Co-Administrator originated with the old portal at http://manage.windowsazure.com. The new portal, found at http://portal.azure.com, has introduced role

CngKey.Import on azure

陌路散爱 提交于 2021-02-18 21:07:18
问题 var rawData = Convert.FromBase64String(_signingKey); var cng = CngKey.Import(rawData, CngKeyBlobFormat.Pkcs8PrivateBlob); I use this code to extract key, from embedded base64 string. It works fine when I test it locally but when I publish on azure I get following exception: WindowsCryptographicException: The system cannot find the file specified (once again I'm not reading from any file) I need this to communicate with apple apns for push notifications, is there any workaround? And this

CngKey.Import on azure

强颜欢笑 提交于 2021-02-18 21:02:03
问题 var rawData = Convert.FromBase64String(_signingKey); var cng = CngKey.Import(rawData, CngKeyBlobFormat.Pkcs8PrivateBlob); I use this code to extract key, from embedded base64 string. It works fine when I test it locally but when I publish on azure I get following exception: WindowsCryptographicException: The system cannot find the file specified (once again I'm not reading from any file) I need this to communicate with apple apns for push notifications, is there any workaround? And this

Microsoft Azure Cognitive Services Handwriting Detection Bounding Box Parameters

两盒软妹~` 提交于 2021-02-18 21:01:24
问题 I am currently using Microsoft Azure Cognitive Services Handwriting Detection API. The API returns a set of values for the bounding box: { "boundingBox": [ 2, 52, 65, 46, 69, 89, 7, 95 ], "text": "dog", . . . I would like to make sense of these 8 parameters. What is their significance and what do they reflect? I tried hard finding about them in Microsoft API's documentation, but of no use. Kindly help me understand what these parameters mean or link me to some place where this doubt can be

How to synchronize Microsoft users from Azure into the Keycloak

橙三吉。 提交于 2021-02-18 19:16:11
问题 We are trying to figure out a way to synchronize users from Azure Account into the Keycloak? Unfortunately, we could not find a documentation for it Do you know a proper way to do it ? I want to use Azure as an external DB that I can use to authenticate my users. Thank you 回答1: I want to use Azure as an external DB that I can use to authenticate my users For that you can use Keycloak's User Federation functionality: Many companies have existing user databases that hold information about users

Retrieve Accesstoken for Azure DevOps REST API 5.1

烈酒焚心 提交于 2021-02-18 19:00:08
问题 In our app we want to retrieve an accesstoken. With this token we want to perform certain actions with Azure DevOps rest API 5.1. I've tried the suggested documententation from Microsoft for OAuth2 (https://docs.microsoft.com/en-us/azure/devops/integrate/get-started/authentication/oauth?view=azure-devops) and PAT's. This always gives back a 203 response as an result. Does somebody know a workaround for this issue? 回答1: According to my test, we can call Azure DevOps rest API with Azure Ad

Azure AD B2C - how to implement custom sign up process?

泄露秘密 提交于 2021-02-18 18:48:39
问题 This is basically a follow up to my prev question - https://stackoverflow.com/a/44738654/2896495. I've implemented an Azure B2C sign up and auth in my web app (.NET Core 2.0) and now I want to add a custom sign up logic with Graph API (as described here - https://docs.microsoft.com/en-us/azure/active-directory-b2c/active-directory-b2c-devquickstarts-graph-dotnet). But I'm confused about app registrations. For B2C auth I created an app in the Portal under Azure AD B2C -> Applications. Now, in

Can Azure Traffic Manager be used with API Management?

江枫思渺然 提交于 2021-02-18 18:16:17
问题 When I add an endpoint to Traffic Manager only websites and cloud services are available to choose. Can I combine API Management services with Traffic Manager? 回答1: Yes, external endpoints can be added to an Azure Traffic Manager profile, beyond Azure Websites and Azure Cloud Services. You will need to use the Azure PowerShell module to set the custom endpoints. Install the Azure PowerShell module: https://github.com/azure/azure-powershell/releases Run the script below (replace $Username

Can Azure Traffic Manager be used with API Management?

坚强是说给别人听的谎言 提交于 2021-02-18 18:15:31
问题 When I add an endpoint to Traffic Manager only websites and cloud services are available to choose. Can I combine API Management services with Traffic Manager? 回答1: Yes, external endpoints can be added to an Azure Traffic Manager profile, beyond Azure Websites and Azure Cloud Services. You will need to use the Azure PowerShell module to set the custom endpoints. Install the Azure PowerShell module: https://github.com/azure/azure-powershell/releases Run the script below (replace $Username

Not able to build Visual Studio Database Project targeting Azure SQL Database when using AT TIME ZONE

房东的猫 提交于 2021-02-18 17:09:31
问题 We have a Visual Studio Database Project that we are trying to move to Azure SQL Database. Some of our views use AT TIME ZONE which is supported in Azure SQL Database, but when I switch the database Target Platform to Microsoft Azure SQL Database in the project properties, it fails to build with error: Error: SQL46010: Incorrect syntax near TIME. I have connected directly to the database in Azure and I can use AT TIME ZONE , but I cannot create or publish a DACPAC file from my project. This