Questions tagged [azure-configuration]

144 questions
2
votes
4 answers

Increasing the MaxBufferSize of a caching role

I'm trying to put an object which is ~60MB into a single cache item however I am constantly greeted with the following error ErrorCode:SubStatus:The connection was terminated, possibly due to server or network problems or…
JConstantine
  • 3,980
  • 1
  • 33
  • 46
2
votes
1 answer

Building Azure Deployment Package from Eclipse fails

I just created a simple java project using Eclipse following the steps on the Microsoft Website http://msdn.microsoft.com/en-us/library/windowsazure/hh690944.aspx. When I click finish on the "Windows Azure Deployment Project" dialog I get the…
2
votes
1 answer

Azure Web Role - Maximum outbound http connections

I am building an Azure Web Role that will need to invoke a lot of external web services. I remember for ASP.Net 1.1, there was a default maxconnection limit of 2, which you could adjust if your application needed more than that (which was pretty…
2
votes
2 answers

Accessing the peer roles hostname programmatically

This page describes how to assign host name to role instance through cscfg. How do i access it in my app? The following approach is not working since RoleInstance does not have a VMName member. foreach (RoleInstance instance in…
2
votes
1 answer

Can i manage old web role with new azure sdk?

I already have my azure web role running in cloud using azure sdk 1.6. I want to use sdk 1.7 to try new features. If i install sdk 1.6, can i still manage my old web role?
user1391380
2
votes
1 answer

Windows Azure Web Role Log files

Is there a simple way to trace or write some log in a ASP.Net MVC3 Azure Web Role ? I just want to write some informations and look in a log file if they were printed. Like : WriteLine("Start Function A");
MaT
  • 1,556
  • 3
  • 28
  • 64
2
votes
1 answer

Can a WebRole be "recycled" programmatically?

IIS7 application pools can be recycled programmatically. Is there an equivalent concept for the web role in Azure? That is the basic question, but for background on why I ask, I include the following... We are attempting to get Umbraco installed in…
John Livermore
  • 30,235
  • 44
  • 126
  • 216
1
vote
2 answers

How to connect to windows azure in a C# project without the account ID in the code?

I'm currently working on a windows azure project in C# ( https://github.com/ismaelbelghiti/Tigwi ) and to connect to the storage account I need a connection string with the storage account key, but then the key appears in the source code. How could…
Guigui
  • 36
  • 4
1
vote
1 answer

How to determine the location of a Cloud WebRole on Harddisk?

After creating a Azure Project within my silverlight app and adding the existing service as a "Add Web Role Project in Solution" I can run my silverlight app hosted in the Cloud and run it successfully locally. I would like to use the SDK Toolkit…
Houman
  • 64,245
  • 87
  • 278
  • 460
1
vote
1 answer

az functionapp config appsettinggs set: Will not allow me to use a variable in --settings parameter

I am trying to give function configurations access to keyvault values. I want to use variables so I do not need to hard code values and can use it for multiple environments; however, when I use variables the parenthesis needed at the end of the…
1
vote
0 answers

Is there a Java ConfigurationBuilder() for Azure?

Is there an equivalent Builder object for Java? This code is meant for C#. Does anyone know where the source code is so I can build a Java version of this? var configBuilder = new ConfigurationBuilder() …
djangofan
  • 28,471
  • 61
  • 196
  • 289
1
vote
1 answer

Using the apple-app-site-association file with an azure static-web-app

I am using an Azure static web app to host a website. I want to host the apple file on the backend for deep linking. I am running into the problem however that the apple documentation requires there is no extension on the file when it is uploaded. I…
1
vote
1 answer

web + worker role cost

I have to run a web crawler in background using Azure. According to what I understood I have to setup a worker role configured with the background task and I have to setup a web role to show the web site ASP.NET MVC. A simple question: how does it…
Ricibald
  • 9,369
  • 7
  • 47
  • 62
1
vote
0 answers

ASP.NET and C#: connection string in web.config vs connection string stored on Azure

I have a web form developed in ASP.NET and C#. I am storing the connection string to a database in the web.config file like this: This points to a local file in the same directory as the…
1
vote
1 answer

App Settings not being observed by Core WebJob

I have a Core WebJob deployed into an Azure Web App. I'm using WebJobs version 3.0.6. I've noticed that changes to Connection Strings and App Settings (added via the Azure web UI) are not being picked up immediately by the WebJob code. This seems…