Tagged Questions

7
votes
3answers
2k views

ASP.NET session state provider in Azure

As far as I know, the current situation is this: Use SQL session state provider is possible (as I've read somewhere) but it's not supported by Microsoft. So it could stop working in the future. ...
19
votes
4answers
3k views

Azure connection string best practices

I have an application that I am just migrating to Azure. Currently I use web.config transformation to manage changing the database connecting string dev/staging/prod environments. How is it best to ...
14
votes
4answers
6k views

How does Microsoft Azure handle Session State?

Does anyone have any information on how state is managed in Azure when you choose to have multiple instances? It seems like InProc would be worthless and you would have to have another state server ...
1
vote
3answers
488 views

Set Timeout For Controller Action

I have come across this thread already, but I might need something else for my situation. I have an action that returns a ViewResult, which is called by the client's $.post() JavaScript: var link = ...
28
votes
5answers
18k views

Recommend a C# Task Scheduling Library

I'm looking for a C# library, preferably open source, that will let me schedule tasks with a fair amount of flexibility. Specifically, I should be able to schedule things to run every N units of time ...
17
votes
3answers
3k views

How to configure ELMAH to work with Windows Azure? I get a 404 on Elmah.axd

I have an ASP.NET MVC web role running on Windows Azure and have setup ELMAH properly in the web.config. I also have my global.asax ignore *.axd routes. Locally, I am able to load /elmah.axd, ...
2
votes
2answers
401 views

How does it happen Azure web role entry point and .aspx page handler are run in different processes?

I'm playing with this Azure web role sample. It contains a class derived from RoleEntryPoint and a .aspx page that contains a button click handler. I test it in Azure Emulator. I put the following ...
5
votes
1answer
248 views

Accessing Azure Storage Tables from C++ code

I have a c++ dll running on azure instance role with no problems. I want the dll to be able to access - read and write - into an Azure Storage account. Specifically, read and write to a storage table. ...
3
votes
1answer
981 views

asp.net mvc azure “Error accessing the data store!”

I've started using the AspProviders code to store my session data in my table storage. I'm sporadically getting the following error: Description: Exception of type 'System.Web.HttpException' was ...
13
votes
2answers
798 views

Real alternatives to Windows Azure PaaS (web role)?

I am looking for alternatives to the Windows Azure PaaS (Platform as a Service) offering, meeting the following requirements: The platform should provide high availability and scalability. The ...
10
votes
6answers
2k views

Azure web.config per environment

I have a Azure project (Azure 1.3) in VS2010. There are 2 webroles, one web page project and one WCF project. In debug mode I want the web project to use a web.config for DEV enviroment, and when ...
2
votes
4answers
605 views

What is the difference between SQL Azure and SQL Server 2008?

now I'm looking on Azure and want to migrate on this one. But I'm not sure that don't get a problems on this way. Could you explain what is the difference? And what I defenetly can't do with SQL ...
0
votes
1answer
150 views

Microsoft Translator XML parse

I have a problem parsing the translated text from Microsoft Translator (Windows Azure). I followed the example from here, however, when I try to display the translated text in a VS XAML textbox, the ...
22
votes
8answers
15k views

Windows Azure for web developers vs Amazon EC2

I just watched the Windows Azure intro video and it left me feeling like it was a front end shell for hosted IIS instances. Can anyone who know more (possibily that was part of the beta) shed on why ...
10
votes
2answers
662 views

how much of a challenge is it to port a asp.net application to azure?

I have a partly developed asp.net application, but now the client wants it to be developed in azure. How much of the existing code can be used in developing the application in azure. What challenges ...
8
votes
4answers
2k views

Staging or Production Instance?

Is there anywhere in the service runtime that would tell me if I'm currently running on 'Staging' or 'Production'? Manually modifying the config to and from production seems a bit cumbersome. Thanks! ...
2
votes
3answers
367 views

Debugger can't connect when starting local azure project

Ok, first of; here's what I did: Install AZURE tools Reboot Start Visual Studio - new Azure project Add web role (asp.net MVC 4 beta web role) Hit F5 (debug) It starts up the storage emulator and ...
2
votes
1answer
405 views

Windows Azure with Multiple Sites in One Role not transforming 2nd web.debug.config to web.config

I am using Web.Config transformations to deploy my application to Azure. I also have 2 sites in my service, a public website, and private WCF site endpoint. I am deploying multiple sites to a single ...
5
votes
4answers
2k views

Run multiple WorkerRoles per instance

I have several WorkerRole that only do job for a short time, and it would be a waste of money to put them in a single instance each. We could merge them in a single one, but it'd be a mess and in the ...
4
votes
3answers
4k views

Create pdf thumbnail with C#

What would be the best method to create thumbnails generated from supplied pdf's using C#? The solution would have to run on Windows Server 2008 and will ultimately be ported to Azure.
6
votes
1answer
1k views

Perfomance - Table Service, SQL Azure - insert. Query speed on large amount of data

I'd read many posts and articles about comparing SQL Azure and Table Service and most of them told that Table Service is more scalable than SQL Azure. ...
5
votes
3answers
73 views

How do I force compilation of ASP.NET MVC views?

I have a Windows Azure web role that contains a web site using ASP.NET MVC. When an HTTP request arrives and a page is first loaded the view (.aspx or .cshtml) is compiled and that takes some time and ...
12
votes
2answers
4k views

Why am I getting SEHException when calling RoleEnvironment.GetConfigurationSettingValue(“MYKEY”)?

I'm trying to call RoleEnvironment.GetConfigurationSetting("SOMEKEY") like so: public partial class AzureBasePage : System.Web.UI.Page { protected ChargifyConnect Chargify { get { ...
3
votes
4answers
361 views

Strategy for JavaScript files on Azure

I am working on a strategy for storing and deploying JavaScript files on Azure (ASP.NET web role) My requirements are: To use minified versions in production Use original versions (i.e. not ...
3
votes
1answer
772 views

Does azure support things like mongodb and redis?

Can you use mongodb and redis/memcached with azure? I'm guessing no but just want to make sure. It turns out they do support things other than .net, are they using linux servers then?
6
votes
2answers
773 views

SQL Azure: What will happen if size of my SQL Azure get 5GB?

I need to know what will happen when a database in SQL Azure exeeds its size. For example I defined a 1GB database and this is going over its size limit. Will it change to a 5GB database?
1
vote
3answers
99 views

Can I copy/paste my .NET websites to Windows Azure?

I'm currently hosting my websites on Windows 2008 Servers through an old-school hosting company. I'd like to switch to something like Windows Azure in hope that it'll be a better service. Is it as ...
0
votes
4answers
1k views

Windows Azure Connection Strings - How to Handle Local vs. Production?

I'm in the process of deploying some windows azure projects and I've noticed that it's a bit of a pain to constantly switch my role configuration settings from using LocalStorage to actually use my ...
5
votes
4answers
503 views

Switching from one connectionstring to another when moving from development to cloud

I am working on a cloud application. When I test out the application on my computer I want to have my connection string set as follows in ServiceConfiguration.cscfg: <Setting ...
3
votes
3answers
540 views

Why can't I combine [Authorize] and [OutputCache] attributes when using Azure cache (.NET MVC3 app)?

Using Windows Azure's Microsoft.Web.DistributedCache.DistributedCacheOutputCacheProvider as the outputCache provider for an MVC3 app. Here is the relevant action method: ...
3
votes
3answers
1k views

Azure Table Storage - Entity Design Best Practices Question

Im writing a 'proof of concept' application to investigate the possibility of moving a bespoke ASP.NET ecommerce system over to Windows Azure during a necessary re-write of the entire application. Im ...
3
votes
1answer
337 views

Is this a good/preferable pattern to Azure Queue construction for a T4 template?

I'm building a T4 template that will help people construct Azure queues in a consistent and simple manner. I'd like to make this self-documenting, and somewhat consistent. First I made the queue ...
2
votes
1answer
56 views

Windows Azure - Can I run a Web Role and Worker Role on the same VM?

I want a web role for my site however I also want that site to communicate with another standalone application I have developed. I see no need to have two VM's - can I have my worker role on the same ...
2
votes
2answers
155 views

Azure Roles and Instances

Can I have a Web Role and a Worker role run on the same instance, or do I have to obtain 2 separate hosting instances and pay twice the amount I would otherwise? I have a WCF Web API that I want to ...
2
votes
4answers
388 views

Windows Azure and dynamic elasticity

Is there a way do do dynamic elasticity in Windows Azure? If my workers begin to get overloaded, or queues start to get too full, or too many workers have no work to do, is there a way to dynamically ...
1
vote
3answers
74 views

How can I pass an arbitrary object via a CloudQueueMessage?

I have a CloudQueueMessage and I want to insert "Hello World" - so I write: CloudQueueMessage message = new CloudQueueMessage("Hello World"); it’s perfect. My problem is that I want to put an ...
1
vote
1answer
403 views

Fetching Azure Subscription ID & Deployment Slot (really fast)

As a follow up to my question about Deployment Status, I'd like to ask if there is a fast way to find: Current Subscription Id The current deployment slot the role is in (Staging/Production) I am ...
1
vote
1answer
191 views

asp.net authentication on Windows Azure

I have put my web application as an web role in a Azure service so I can deploy it on Azure. It works perfect, but I have one problem. I use an HttpModule for url rewriting and have no .aspx ...
1
vote
4answers
1k views

Visual Studio 2010 can apply Debug or Release transformations to Web.config, but what about the Azure settings?

Do I have to manually edit the Azure connection strings myself to switch between production and development, or is there something comparable to the Transformation Visual Studio applies to Web.Config? ...
0
votes
3answers
152 views

Webrole is not starting and always busy

I am working on a Azure Web application. The code compiles and runs fine on my local machine. But when I upload the package in Azure Platform, the webrole wouldn't start and gives Busy status with the ...
0
votes
2answers
49 views

Host Multi-Versioned Services in Windows Azure

We are currently in the development phase of a new project that will be deployed to Windows Azure. The product will be a publicly accessible web API using the new ASP.NET MVC Web API. What we are ...
0
votes
1answer
67 views

What assemblies do need to add/change to deploy silverlight web application to Windows Azure [Error]?

I have a silverlight based application consisting of charts using silverlight toolkit and connected to database using RIA Services (Domain Service class, ADO.NET entity model). I want to deploy it to ...
0
votes
1answer
500 views

Debugging Azure: Error attaching the debugger to the IIS worker proccess

I have a web application asp.net to deploy to Windows Azure. I try to run it on local first. But when debugging, I catch this error from VS2010: "There was an error attaching the debugger to the IIS ...
0
votes
2answers
123 views

Access Azure blob storage using C++

Was looking around and found a few answers that suggests that I should use REST. But how would I integrate this in Qt/c++? Could anyone link some examples of this or maybe a few lines of code? Would ...
0
votes
2answers
199 views

Can Shibboleth be integrated with Windows Azure Access Control Service?

Two of our higher-ed clients use Shibboleth for SSO. I have zero experience with Shib, and do not have an instance to test with. Ultimately we would like to integrate a Shib SSO with these clients ...
0
votes
1answer
284 views

How to detect if the environment is staging or production in azure hosted service worker role?

I have a worker role in my hosted service. The worker is sending e-mail daily bases. But in the hosted service, there are 2 environment, Staging and Production. So my worker role sends e-mail 2 times ...
0
votes
1answer
924 views

DataServiceRequestException with TableStorageSessionStateProvider

I'm trying to use the TableStorageSessionStateProvider from the Azure training kit. I can use the example without problems but when I use it in my web app, I get this exception: ...
11
votes
9answers
6k views

azure performance

I've moved my app from a dedicated server to azure (and sql azure), and have noticed substantial performance degradation. obviously not having the database and web server on the same piece of ...
33
votes
13answers
7k views

To Azure or Not to Azure?

I don't know about you, but i'm rather excited by the newly developing 'Cloud' computing platform. In the past I have been rather hoo hum about it all, thinking it is going to be a passing fad. I'm ...
6
votes
3answers
2k views

Good Strategy for Message Queuing?

I'm currently designing an application which I will ultimately want to move to Windows Azure. In the short term, however, it will be running on a server which I will host myself. The application ...

1 2 3 4 5 13