Windows Azure is a Platform as a Service (PaaS) and Infrastructure as a Service (IaaS) cloud computing platform by Microsoft. Users of the platform can deploy their applications onto cloud hosting benefiting from on-demand service, elastic scale, and a highly managed environment on a pay-as-you-go ...
0
votes
0answers
3 views
Azure - How my website is hosted in the cloud
As you know traditional web hosting means that several hosted websites on one machine share the CPU, memory, disk space, etc. In comparison, websites created in the cloud i.e. through using Azure are ...
0
votes
0answers
12 views
Can't delete azure database
In the sql server database list here:
https://manage.windowsazure.com/#Workspaces/SqlAzureExtension/Databases
I select a database and at the bottom is "Delete".
I press delete and it processes a ...
1
vote
0answers
11 views
How is Azure ACS authentication secured?
Thanks to Gaurav Mantri for answering my earlier question Azure ACS Set Up in C#.
However can someone explains to me, how the following line is secured?
if ...
0
votes
1answer
9 views
How to use StartCopyFromBlob between different accounts?
I am using this code to copy blobs from one account to another... but it throws an exception.
var srcAccount = CloudStorageAccount.Parse("connection string 1");
var dstAccount = ...
0
votes
1answer
9 views
Azure Mobile Services use from command line for testing
I have a Windows Azure Mobile Service that works great with the official clients. However, it would be better if I could run my tests from command line scripts without having to write and compile ...
0
votes
0answers
8 views
Running a nodeJS sites in Azure Websites
I'm trying to run a nodeJS site in Windows Azure websites. I just git pushed two files:
server.js
package.json
And all of my modules from npm install. It works fine locally but when I browse the WA ...
1
vote
1answer
30 views
Azure ACS Set Up in C#
I am looking at several examples for using ACS, and decidedly they do make me feel stupid.
I looked at the tutorial online it seems like all I need was the following line in the config:
...
0
votes
1answer
15 views
iOS Cloud Storage API for Visual Studio 2010
I have created a WPF application using Visual Studio 2010 that receives data and sends the same to a Windows Azure Server (where the data is stored in tables). I am able to send and receive data on my ...
1
vote
1answer
38 views
How to use Azure Mobile Service API feature
An API feature has been added to WAMS where I can define custom scripts. This seems to deprecate the previous practice of creating a script table. However, I couldn't find any description about how I ...
1
vote
2answers
20 views
How do I debug my Azure web role in Visual Studio 2012?
I know this is probably something really stupid, but I've been searching google for 2 hours to figure this out.
I have a new test Azure app that I would like to debug in Visual Studio. If I set the ...
0
votes
0answers
9 views
Can't get ResponseText value when request is failed on Azure Websites
I do model validation customly on server side by setting value to ResponseBody of response object and setting HttpStatusCode to BadRequest.
In local development over IIS Express, i can get that ...
0
votes
1answer
4 views
Durandal SPA Deploy to Azure Web Site with Optimizer in Build Deployment Command
I ran the Azure Command Line tool to generate the script below, with the following command
C:\GameDev\DevPortal>azure site deploymentscript --aspWAP "DeveloperPortal\Devel
operPortal.csproj" -s ...
0
votes
0answers
10 views
DEPLOYMENT FAILED with Windows Azure with BitBuket
I have a few projects that I deploy to Azure through BitBucket. I just created a brand new ASP.NET MVC 4 project and I get the following error when I try to deploy:
Command: ...
0
votes
0answers
24 views
Easiest way to access database from web application in Azure (same account)?
I'm creating a very simple proof of concept. On the same Azure account I have a database called DaBa and a web application running a service called WeSe. At the moment, when I call a method in WeSe ...
1
vote
1answer
17 views
Azure SQL Database naming ambiguity
Our application uses an Azure SQL Database.
Apart from our local dev setup, we have two environments:
Staging (for quality assurance and client testing), and
Production (live)
The Staging ...