1,132 questions
1
vote
1
answer
328
views
Publishing Azure Cloud Services (extended support) from Visual Studio fails - Object reference not set to an instance of an object
NOTE: This is not your typical null reference error!
The error is a message in the output of the Microsoft Azure Activity Log and is not from code directly in the project that I can debug.
I have a ...
0
votes
1
answer
216
views
Azure RBAC: Error renewing website certificate (Let's Encrypt)
This Q&A is related to another Q&A, linked here. The helpful answer there by Sridevi got me past the first set of gates.
I feel I'm very close to getting a certificate renewal, but now I'm ...
0
votes
1
answer
217
views
Azure solution for hosting TCP server
Im looking for a way to host a scalable c# server and im thinking that Azure is a good fit. This is what i need to be able to do.
Be accessible by clients via static ip adrress
Use TCP communication
...
2
votes
1
answer
390
views
No Web Role for Visual Studio 2022 Azure Cloud Service
I am wondering if I could get some help figuring out what I have done wrong here. I have been trying to learn .NET cloud development through exercises (https://learn.microsoft.com/en-us/visualstudio/...
-1
votes
1
answer
904
views
Azure permission missing Microsoft.Web/sites/host/properties/read
I am trying to add the following permission to an Azure role due to an error I am seeing in the logs - Microsoft.Web/sites/host/properties/read. However, I cant find this permission to apply when I ...
9
votes
3
answers
22k
views
Azure global admin cannot(disabled) add roles under "Access Control(IAM)"
I activated my global admin role in Privileged Identity Management like so
When I navigate to the Access Control blade under a subscription, I see the Add role assignment options disabled.
Doesn't ...
0
votes
1
answer
221
views
Cloud Service Warmup using IIS
I came across this link about warming up the IIS application https://ruslany.net/2015/09/how-to-warm-up-azure-web-app-during-deployment-slots-swap/ Can this feature be used for azure cloud services ...
3
votes
1
answer
2k
views
Azure Default Reader vs Built-in Monitoring Reader
I am trying to setup narrow down the best possible role for monitoring data from security perspective. My needs are slightly different so I don't want to use the Security Reader role (mainly because ...
2
votes
1
answer
142
views
Azure Cloud Service Web Role not starting - Unhandled exception - Unable to find Assembly
I have an ASP.NET Web API hosted in a cloud service web role. I have added a WebRole class extending RoleEntryPoint which is attempting to retrieve an IoC castle Windsor container which has ...
0
votes
0
answers
52
views
Role Authorization in Azure WebApp
I'm very new in Azure. I built an Azure WebApp which my vendors and customers log into. When users log in, they go to the SiteMap page. I want customers only see and access certain pages in the ...
1
vote
1
answer
735
views
Is it possible to publish cloud service package using AZ powershell script?
I want to find out is it possible to deploy classic cloud service package (Microsoft.ClassicCompute) to Azure deployment slot with AZ powershell.
There is a classic service inside a resource group ...
1
vote
1
answer
339
views
Azure WebRole Sticky Load Balance
I have an Azure WebRole, which publishes a WCF Service with PerSession setting. This means, session needs to be preserved for a long time... This is because of synch-framework and cannot be changed.
...
0
votes
0
answers
1k
views
Powershell script to remove weak ciphers
is the below power shell scripts removes the weak ciphers and what I exactly want to remove are the below ciphers
TLS_RSA_WITH_AES_256_CBC_SHA256
TLS_RSA_WITH_AES_128_CBC_SHA256
...
0
votes
1
answer
483
views
How to restore permission for editing wiki on TFS online?
I am an admin on a TFS online project, and I have created a wiki and written some pages in it. However, today I cannot access it to edit these pages nor add sub-pages.
The Security button in Wiki ...
4
votes
1
answer
999
views
Slow communications between Azure regions
So just a quick summary of what we are doing to put everything into context. We have a socket server running as an Azure Cloud Service (worker role) within the South Central US region. All of our ...
1
vote
1
answer
809
views
Azure cloud service cannot read from web project's web.config
The config value is stored in the Web.config. When I build the web project, the Web.config gets copied to the build folder as {ProjectName}.dll.config. Running the web app locally works fine, the ...
1
vote
0
answers
74
views
How can I switch an existing Azure web-role from http over to https
I have a working Azure web role which I've been using over an http endpoint. I'm now trying to switch it over to https but struggling mightily with what I thought would be a simple operation. (I'll ...
1
vote
1
answer
189
views
Azure Web Role recycles, can't load entry point "ExecuteAsync()" in ChallengeResult.cs
So, this has worked like forever (and continues to work just fine in emulator).
When I spin up my classic cloud service in Azure I get the error below. ExecuteAsync() is in the web role, in Results/...
1
vote
1
answer
705
views
Certificate Chain incomplete using Let's Encrypt and Certes (Azure webrole)
I am trying to create a new Let's Encrypt SAN certificate using the Certes Library and hosting on a Azure WebRole. Everything has worked previously (many times) but now I am getting a cert error on ...
1
vote
1
answer
1k
views
How can I create an Azure Role-Based Access Control rule to authorize a user the ability to invoke an azure function?
I would like to give a specific user the ability to invoke (but not modify or delete) an Azure function through the Azure web portal.
I am following the documentation for creating custom roles in ...
1
vote
1
answer
111
views
Not able to enable Diagnostics for web role using powershell
Hi I am trying to enable the diagnostics for web role but when ran the script I got the below error
https://learn.microsoft.com/en-us/azure/cloud-services/cloud-services-dotnet-diagnostics
$...
2
votes
1
answer
120
views
Copy Files to the output directory on an Azure WebRole
We have an azure Webrole which we call as an API from other applications to convert webpages into a rendered byte array which we then attach as a pdf into emails. We do this using ABCpdf.
For our ...
0
votes
1
answer
88
views
Unable to reach web site locally on Azure web role
I am deploying multiple web sites on Windows Azure cloud service on Single web role. I have added required binding and host file entries. when I run ping command I am getting the response as well.
...
1
vote
0
answers
191
views
Global Scope for Mock HTTPContext - CloudService Project?
I'm trying to set up a Unit Testing Framework for my WebRole project. I created a mock HTTP context and attached it to the controller that I'm trying to test as such:
var fakeHttpContext = new Mock&...
1
vote
1
answer
196
views
Setting up Unit Tests for WebRole cloud service project?
I'm trying to set up Unit Tests for my WebRole project. I created a separate project "MyWebRole.Tests". The issue I'm having is when I instantiate my controller methods they call on
RoleEnvironment....