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
20 views
Hosting Azure Database Locally
I'm trying to host an Azure database on my local machine and access it from another machine on the same network.
Is there any solutions to achieve this, or alternative methods to hosting a database ...
1
vote
1answer
30 views
WCF enqueued requests
In our application we have a WCF "standalone" published on a Azure WorkerRole (Cloud Service). In this WCF, we have modified the throttling and limited the maximum number of concurrent calls. When ...
0
votes
1answer
32 views
Azure Queues vs Topics
I am developing a website to be deployed in Azure. Right now I am using an Azure Queue to send emails to users. I am checking the Queue for received messages after each 60 seconds by sleeping the ...
1
vote
0answers
33 views
Stress testing windows azure virtual machine
I'm having two Azure Cloud Services, which is running my two ASP.Net applications, and two Windows Azure Virtual Machine running IIS Media Services. I'm using these VMs as a Media Server to deliver ...
1
vote
1answer
31 views
Windows Azure Mobile Services management API
Is there any management API in Windows Azure Mobile Services?
For example: methods to create mobile services or data tables.
1
vote
2answers
51 views
How can I load test my website on Azure? [closed]
I need to measure how many concurrent users my current azure subscription will accept, to determine my cost per user. How can I do this?
0
votes
1answer
30 views
NotificationHubUnauthorizedException: Unauthorized on Azure Notification Hub registration
So I'm trying the Notification Hubs on Azure.
I have set things up according to this blog post.
I have done the GCM setup in my Android code so I have a valid regId:
String connectionString = ...
0
votes
0answers
17 views
HDInsight and Azure Table Storage
I'm wondering if Azure Table Storage can be used as a data source for Map/Reduce tasks on HDInsight cluster.
Obviously data can be exported from Table Storage into a flat file and then imported into ...
0
votes
1answer
28 views
Opening a page when user clicks on a toast notification
i am sending a toast from Azure to my Win 8 App whenever there is an successful insert operation into the table .
Here is the script
request.execute({
success: function() {
// ...
0
votes
1answer
18 views
How to enable SSL in WebSocket with System.Net.HttpListener
I'm using .Net 4.5 and HttpListener class on Windows Azure(a worker role) to make my own WebSocket server. For HTTP non-secure connections it works very well. The problem is that I need to make ...
1
vote
1answer
35 views
How to add Blob AND Table to the same Azure Store
For some time now I have successfully used Azure Blobs. Now I would like to add a Table to the same Azure Store, but that won't work. I get no error in return.
Here's a snippet of my code:
...
0
votes
1answer
31 views
Asp.net azure co located cache session state settings?
When using azure co-located cache for sessions do I need to specify high availability for the cache to allow all machines to have access to the "same" sessions.
So if I have high availability ...
1
vote
1answer
37 views
Get http 500 in a Azure worker role http request
I have an azure web service that is running 1 worker role and 1 web role, the roles are set to be in an azure private network.
The worker role performs some sync work with our database that is ...
0
votes
0answers
8 views
Set node version for non node web role
i have written an SPA which uses Grunt tasks to build itself from the source code into a dist directory.
I want to host this on azure to keep everything in one PaaS.
If i send the prebuilt dist ...
0
votes
1answer
14 views
manage azure session state data across multiple VMs
I have to host a website on multiple azure virtual machines that are load balanced.I have another SQL server Virtual machine hosting database. I have to manage user sessions across these multiple ...
0
votes
1answer
36 views
How to find Azure Subscription Quota
I did google and could not find any accurate answer.
When I try to deploy the web application to different data centre, I am getting error message below:
Server response = 40652 Cannot move or ...
0
votes
1answer
29 views
Inserting Image into Azure blob -{“Error: Internal Server Error”} MobileInvalidOperationException
i am trying to insert an image from an Win 8 App into Azure blob .I am running into an 500 exception when i try to do this . This is the class i am using -
private ...
0
votes
0answers
14 views
Socket.io socket chat with Adobe AIR as a client
I have been learning node.js and azure and followed a tutorial to create a socket.io chat system (http://www.windowsazure.com/en-us/develop/nodejs/tutorials/app-using-socketio/)
This is working fine ...
0
votes
1answer
16 views
Nodejs Web Role Doesn't Run on Azure Local Compute Emulator
I have an azure web role that i created by following the steps laid out verbatim at http://www.windowsazure.com/en-us/develop/nodejs/tutorials/getting-started/.
However, when i do the ...
0
votes
1answer
24 views
Azure Cache locks up?
I'm trying to get a basic cache implemented but it is locking up on the create step...
I have tried several methods of "creating the cache" but they all freeze on the same step (where I new up the ...
1
vote
2answers
44 views
Azure Cloud Service is dead after Application Pool Recycle
I have a deployed Azure Cloud Service WebRole WebAPI with only one instance.
I have noticed that if I wait some idle time (No HTTP Requests), Then later on the service is dead, and every request to ...
1
vote
1answer
20 views
Windows Azure osFamily 2 throw error 500 for static files
We are facing a similar problem to this case with the deployment of our web role cloud service to osFamily 2 (Windows 2008 R2) in Windows Azure. The difference is ours is a straight ASP.NET MVC web ...
0
votes
2answers
23 views
500 - Internal Server Error, Windows Azure Cloud Service
I have just switched from WCF Service to Windows Azure Cloud Service.
I have copied over my codes from my WCF service into the Cloud service.
When i run the website i get
500 - Internal Server ...
0
votes
0answers
21 views
REST WCF obtaining and validating ACS SWT token on Azure
I am creating a WCF Rest service which will be hosted on Azure. I require to do the following steps in my WCF Rest Service.
Validate the user credentials(Username & Password) received from the ...
0
votes
0answers
13 views
How to create and access arbitrary directory within Azure startup task
all.
I have developed an Azure projest, where i want install some applications to somewhere like "c:\my_app" ( an arbitrary path, of course not the system directory).
I put some introducts in a batch ...
1
vote
0answers
16 views
FetchAttributes from a CloudBlob with Error when trying to know if a blob exists
We are trying to know if a blob exists, so we are doing a FetchAttributes. It has worked well but in a load test, in thousand of requests, two of the requests failed in this method.
The error was ...
0
votes
0answers
20 views
Azure (HTTP 500 Internal Server Error). I need a better error message
I only have one question, how to get a more detailed description of my error?
• I published my database to Azure. It works fine.
• I run my web site from my desk top (Visual Studio 2010) and it ...
0
votes
1answer
26 views
deploy solution to azure virtual machine
i have a .net solution, with a Mvc 4.5 web, a c# server dll, another webservice layer dll, etc.
I want to deploy it on a azure virtual machine xx.cloudapp.net:8080
There are many guids on how to ...
4
votes
1answer
54 views
Unsolvable (as of yet) serialization error
We are currently experiencing the following error (from the logs) when using our Windows Azure App:
System.Runtime.Serialization.SerializationException Assembly ...
0
votes
1answer
32 views
Configuring SSL endpoints for node.js worker roles on Azure
I've set up a node.js app to run on worker roles (not web roles) on Azure cloud services. Everything was working fine with the standard app running on HTTP.
Now I'm trying to get it running over SSL ...
0
votes
1answer
18 views
Moving Assets among different Azure Media Services
In my Azure account we have 7 different media services. Each of them possesses some videos around a thousand. Does any one know how can I move my assets from 6 of media services to only one of them on ...
0
votes
1answer
17 views
Error in Using Azure Shared Caching Session State Provider
I am trying to use Azure Shared Caching Session State Provider in My Test Asp.Net Application but receiving following error
No such host is known Description: An unhandled exception occurred
...
0
votes
0answers
9 views
How to asynchronously receive a azure service bus message in node.js
I have socket.io in node.js and my worker role in .net. I am sending service bus queue message from socket.io to worker role and in worker role am doing some processing and sending data back to ...
0
votes
0answers
20 views
Difference of standard publish and adding cloud services with vs2012
I wonder if someone can help? I'm trying to deploy a mvc app to azure and have followed the what appeared to be simple instructions of selecting publish from my mvc app and using the imported azure ...
0
votes
2answers
22 views
Import data from Azure SQL to HDInsight (text file)
I have been trying to import data from my SQL Azure DB which is publicly available into HDInsight. Both are part of same subscription.
I fire following query at the HDInsight Command prompt:
sqoop ...
1
vote
1answer
42 views
Log4Net working locally but not on remote Azure DB
I locally develop an ASP.NET MVC application and use Log4Net to log message on the local database with the following connection string (log4net.config):
<connectionType ...
0
votes
1answer
14 views
How do I migrate an existing Windows Azure VM to a Windows Azure virtual network?
I would like to migrate our test server - a Windows Azure VM running Windows 2008 server (running AD DC and variety of apps such as Dynamics CRM) - to a virtual network.
I am looking for a safe way ...
1
vote
0answers
82 views
VM on Azure - Passive FTP Won't Work
I've tried the suggestions on a number of sites (http://blogs.thesitedoctor.co.uk/tim/Trackback.aspx?guid=e81a4682-0851-490b-a3d2-adf254a701e7 and ...
1
vote
0answers
19 views
SSL 256 bit encryption - on Azure website
With reference to the recent custom SSL provision for Azure website on the reserved instance - how can I enforce 256-bit encryption? All I see is the 128 bit using RC4_128. I want to ensure users ...
0
votes
2answers
31 views
How to remove current storage account from Azure Subscription?
I am learning how to set up AZURE from powershell. So I created a storage account and set it as current storage account and I deleted it from azure but
(Get-AzureSubscription).CurrentStorageAccount ...
0
votes
1answer
27 views
Windows Azure SDK 2.0 missing in cloud service?
We just upgraded from the Windows Azure 1.7 SDK to 2.0.
This created a lot of problems in the codebase, but we got them ironed out and running locally.
Now when we try to publish to our cloud ...
0
votes
1answer
19 views
Umbraco 6.05 on Windows Azure
I am deploying Umbraco 6.05 to Windows Azure. I am currently using "Azure Web Sites" to do this, but from what I can glean, it appears that this may cause future problems with the storage of media ...
0
votes
1answer
31 views
Queries to connect Azure Websites with SQL server in Windows Azure Virtual Machine
I had one requirements to migrate 1 web application and couples of databases (4) to windows azure. I had selected SQL Server standard edition to move all databases and moved my databases to sql server ...
-1
votes
0answers
14 views
Cluster creation failed error
I've got access to Azure HDInsight Preview. When I'm trying to just create a cluster, it shows an error, "The request failed. Please contact support for more information", with no additional ...
3
votes
0answers
24 views
Windows Azure - “The configuration file is missing a diagnostic connection string for one or more roles”
In Windows Azure Management Management portal, when I try to monitor the instances, I get the following error:
The configuration file is missing a diagnostic connection string for one or more roles. ...
0
votes
0answers
23 views
WCF error at client - Hosted in Azure
I deployed a WCF service in Azure website.This can be easily accessed as below -
http://mytestwcfservice.azurewebsites.net/Service1.svc
This service as following functions -
A) ...
1
vote
1answer
24 views
Issue with SQL Azure regarding clustered index and delete constraints
I have the following SQL script that seems to work on local SQL 2008 R2 instance but fails on Azure SQL.
I have scoured the web but have not found any solution yet.
Any suggestions?
I would like to ...
0
votes
1answer
37 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
1answer
83 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
26 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 = ...




