Questions tagged [azure-configuration]

144 questions
1
vote
2 answers

Azure App Configuration - How to set a secret

I follow this guide to set up Azure App Configuration. But I think I misunderstand this line: dotnet user-secrets set ConnectionStrings:AppConfig "Endpoint=;Id=;Secret=" Or rather; what is what... your_endpoint…
Pierre
  • 559
  • 9
  • 21
1
vote
1 answer

Microsoft Azure : API Access error DisallowedOperation

While performing the Resource Manager API calls for a few subscriptions I am getting the below error 400 Bad Request {"code":"DisallowedOperation","message":"The current subscription type is not permitted to perform operations on any provider…
Pharaoh
  • 712
  • 1
  • 9
  • 33
1
vote
2 answers

HTTP 403 Error when deploying ASP.NET App to Azure Web App

I am trying build up a Staging Environment for an ASP.NET MVC Web App, but am stumbling from problem to problem, the last one having been this one: HTTP 500.79 Error / System.UriFormatException when deploying ASP.NET App to Azure Web App Currently I…
1
vote
1 answer

HTTP 500.79 Error / System.UriFormatException when deploying ASP.NET App to Azure Web App

I am attempting to set up a Staging Environment for an ASP.NET MVC Application, and want to do that as an Azure Web App, but I am really stuck on an HTTP 500 at this point. The error I get is: 500.79: The request failed because of an unhandled…
1
vote
1 answer

Azure Service Bus and long processing messages

In my system LockDuration = 5 minutes, AutoRenewTimeout = 20 minutes. Processing of some messages taking more then 5 minutes (sometime 5:15, sometimes more then 6:00). For these messages I have an exception: "The lock supplied is invalid. Either the…
1
vote
0 answers

Is it possible for an Azure Role ConfigurationSetting to be optional?

My configuration code is setup in a way that default values are provided, and configuration files can be used to override these defaults. For Azure Worker Roles I use the CloudConfigurationManager to read the configuration from the…
user310988
1
vote
2 answers

Azure: Do not deploy a role by configuration

We have written a high scalable Cloudservice for MS Azure with two roles: "WebsiteRole" and "WebsiteWorkerRole". For better performance we deploy this Cloudservice in multiple regions (2x US, 2x EU, 1x JP). We have different configuration files for…
xFight
  • 68
  • 4
1
vote
1 answer

export azure service bus configuration export

I'm about to use Azure Service Bus and I'm going to have at least 4 environments that will be used for different parts of the development process, i.e. Build, Test, more Testing, and finally Production. I would like to export my set of Queues and…
1
vote
0 answers

Can you share sample code updating Azure configuration file using Change Deployment Configuration

So I'm reading the Change Deployment Configuration on MSDN and I want to use it. I have what I think are all the components Formatted URI Uploaded a management key I have a modified ServiceConfiguration file Based on the information I'm not sure…
Adam Heeg
  • 1,704
  • 1
  • 14
  • 34
1
vote
2 answers

How to get full list of CloudConfiguration from inside a web service at runtime?

ConfigurationManager has AppSettings name-value collection but CloudConfigurationManager has only GetSetting(string) method where you can get the config settings 1 by 1 if you know the key. Is there a way to get the whole config of the role…
Ognyan Dimitrov
  • 6,026
  • 1
  • 48
  • 70
1
vote
1 answer

How do I enable the cscfg overrides to work with NServiceBus Azure configuration

When using NServiceBus the Transport connection string doesn't seem to be fetched from the applicable Cloud configuration first but immediately from the app.config. Options I've tried: Using the configuration section…
janpieter_z
  • 1,722
  • 13
  • 28
1
vote
1 answer

Why is CloudConfigurationManager using my Cloud.cscfg instead of Local.cscfg too?

I do realise that his question was asked and answered, but unfortunately the solution of complete clean, rebuild, restart.. doesn't work in my case and my lowly reputation doesn't allow me to comment. So I am I think compelled to ask it again with…
Brett JB
  • 687
  • 7
  • 24
1
vote
1 answer

Using web.config transformations in VS2013 with Microsoft Azure

I am trying to have my production configuration settings within my web.Release.config file used when I publish my application to Microsoft Azure. My scenario, is that I am using VS2013 and trying to publish to a production Cloud Service, running…
Brett Rigby
  • 6,101
  • 10
  • 46
  • 76
1
vote
1 answer

Dynamically change azure configuration (.cscfg) values

I'm having azure worker role project. below is a code from my configuration (.cscfg). c# (FLAG = 1;) Through c# code i want to change this value. Is there any way for dynamically changing value of an azure service configuration? Please instruct me…
TATAS
  • 67
  • 7
1
vote
1 answer

Web Role local storage URI

I have a local storage folder, called TempStore, set up on my Web Role instances. Is it possible to expose files as a URI from my local storage? E.g: http://myapplication.cloudapp.net/TempStore/helloworld.jpg I understand that I could use blobs for…