Tagged Questions
0
votes
1answer
15 views
Azure: Change VM name using Cmdlets
I erroneously named a virtual machine.
Using the Azure Powershell I am able to rename cloud services using Set-AzureService. There doesn't seem to be a Set-AzureVM command to rename virtual ...
0
votes
1answer
24 views
How do I reclaim unused blob space for my Azure VHD
Maybe I don't fully understand how Azure charges for VHD storage.
When I started out, I had a 120gb VHD with only ~30gb used. I was only getting charged for roughly 1gb per day for Azure. As I ...
0
votes
1answer
24 views
windows azure performance difference between XS, S and M servers
I was trying to calculate the real-world performance difference between the different server types in Azure, considering the difference in pricing between them.
To calculate this, I have tried ...
0
votes
1answer
22 views
windows azure virtual machine hard disk backups
When using Virtual Servers on Windows Azure and attaching disks - Would these go down if the hard disk / server should fail? Or are they guaranteed to be backed up? Should we still keep an external ...
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
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
2answers
25 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
1answer
20 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
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 = ...
1
vote
2answers
30 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 ...
0
votes
1answer
32 views
Reading and Writing text file in Azure Storage
Following is the code to first save a line of text,into a text file,present in azure storage, and then read it and print .
string firstString = "this \t is \n a \t line \n are: ";
...
0
votes
1answer
24 views
Modify text file in Azure Storage
I just asked a bit of misplaced question here .I am a complete newbie to Azure,so plz bear with me.
I have a text file uploaded in my Azure storage account.Now, in my worker role , what i need to do ...
0
votes
1answer
33 views
Write text to a file in Azure storage
I have a text file uploaded in my Azure storage account.Now, in my worker role , what i need to do is every time it is run, it fetches some content from Database, and that content must be written in ...
0
votes
1answer
35 views
Determining the size of table and blob in Azure Storage Service
I would like to determine the table size for each table and each blob entity size of my azure storage.
I tried using $MetricsTransactionsBlob, $MetricsTransactionsTable,$MetricsTransactionsQueue ...
1
vote
1answer
33 views
Can you share Azure storage account for NServiceBus Sub Storage, DataBus and Saga?
How does NServiceBus reserve the storage on Azure for the purposes of Subscription storage, Databus and Saga?
Do I need a separate account for each of the NServiceBus hub in my solution or can they ...
0
votes
1answer
43 views
Azure Table Update Concurrency Issue
I am trying to update a user credit / count information against each transaction. If we hit more than 2/4 transaction per second the update below is not updating the counts / user credit information.
...
0
votes
2answers
44 views
azure table storage Export Data to Flat or XML File for SQL
I am looking for capability to Export data from SQL Azure Azure Table Storage to Some Flat file or XML file, so that we can import that to SQL / MYSQL Server and do the data analysis.
What happens is ...
1
vote
1answer
33 views
Service Management Url in Windows Azure
I'm trying to publish a cloud service from Visual Studio. Edit subscription dialog in Visual Studio asks me in the 4th step: "Enter a service management URL". It's https://management.core.windows.net/ ...
-1
votes
1answer
34 views
How to meter Azure Web Application developed under SaaS model for billing the onboarded tenants? [closed]
I have developed Azure cloud web application that uses web roles & worker roles and stores the data in common table storage tables, tenant wise blobs and schema wise separated azure sql database.
...
0
votes
1answer
48 views
Set metadata in REST request to put blob in AZURE
i am able to upload file to azure blob using REST api provided by Azure.
i want to set metadata at the time i am doing request for put blob, when i am setting it into header as shown here i am unble ...
0
votes
2answers
42 views
Azure Cloud Deployment - Log Monitoring
I have deployed my azure cloud service, but some of my instances stays unhealthy and keep recycling. I see 'Recycling (Role has encountered an error and has stopped. Sites were deployed.' in status ...
0
votes
3answers
37 views
Avoid over-writing blobs AZURE
if i upload a file on azure blob in the same container where the file is existing already, it is over-writing the file, how to avoid overwriting the same? below i am mentioning the scenario...
step1 ...
0
votes
1answer
20 views
Restrict to maximum of one added message to the Azure Queue service using Shared Access Signatures
We have a requirement where we need to allow potentially many users to add one message to the Azure Queue Service. Using Shared Access Signatures we can allow users to add messages to the queue for a ...
0
votes
1answer
21 views
How do I access the location of a file in RoleEnvironment.GetLocalResource on the client side
I'm trying to present a file in a client side javascript viewer. The file is originally stored in Azure storage. I can't display the file in the viewer using the remote Azure URL due to CORS. So ...
1
vote
2answers
209 views
Could not load file or assembly Microsoft.Data.OData Version=5.2.0.0 error in Azure Cloud Worker Role using Table Storage
I have a very peculiar issue using Azure Table Storage. I have a .NET 4.5 project in Visual Studio 2012 where I deal with all my Azure Table Storage functions. This project/dll is referenced by two ...
0
votes
2answers
89 views
Setting the Azure Trace logging switch - why in 2 places and not 1?
While trying to figure out how to get log information for an Azure Web/Worker role, lots of posts suggest that I need to set my configuration settings in -two- places.
1 Configure .config file
...
1
vote
2answers
36 views
Any iOS core lib can upload blob to windows azure storage?
Windows azure SDK-ios only for mobileService,I want to upload something to storage in iOS app.
Have any core lib to do this?
3
votes
5answers
123 views
How to use REST API for Azure blob storage,with Java
I am new to Azure, i am trying to use REST API for uploading image to Azure blob but unable to find any referance/material which explains the process using Java, i found examples using c# but i want ...
0
votes
5answers
54 views
Is there a way to update a cloud app instead of redeployed?
I was starting Windows Azure using WebSites, now I'm facing with the situation where I need Crystal Reports in my site, so I'm looking for a way to install the Redistribute Files to use it in my web ...
0
votes
1answer
49 views
Lucene .NET 3 and Azure: unable to complete indexing
I'm trying to use the latest version of Lucene.NET (applied to my project via NuGet) in an Azure web role.
The original web application (MVC4) has been created to be able to run in a traditional web ...
0
votes
1answer
31 views
how to deploy java web app in windows azure
I need to deploy my web application in Azure with JBoss 7 in PaaS mode.
I am able to run the app successfully in IaaS mode with windows virtual machine. But I need to run it in PaaS mode.
Also, ...
0
votes
1answer
84 views
windows azure: data storage with append
I plan to run a numerical simulation on Windows Azure. The simulation can take days or weeks. Every second or so the simulation produces a set of numbers like temperature: double, pressure: double, ...
1
vote
1answer
103 views
StartCopyFromBlob in Azure SDK 2.0 taking days?
I have a situation where I am copying lots of blobs from one storage container to another and some of the blobs have copied but a lot of them are still pending after two days since I initiated the ...
-2
votes
1answer
43 views
How do you deploy an EXE file into my Azure account?
I have an exe file which ,when called ,opens a pdf viewer... i used it in my web application and and tried to deploy it on my azure cloud as a service. every thing worked fine but when i clicked the ...
0
votes
1answer
40 views
Storage Exception Azure (using java APIs provided by Azure)
i am getting following exceptions while uploading data to cloud(Azure).
can anyone please help regarding the same?
com.microsoft.windowsazure.services.core.storage.StorageException: Server failed to ...
2
votes
1answer
52 views
Downloading files from javascript
I have a .NET web application that houses a large number of downloadable documents. I want to move these files offsite to Azure storage. However, given a particular file's URL, I need a way to ...
1
vote
1answer
184 views
Issues uploading VHD in Azure Powershell with Add-AzureVHD commandlet
I'm attempting what should be a pretty basic task. I've created a local VHD of a workstation template that I want to upload for use in my Azure environment. I'm working from Azure Powershell.
I've ...
-1
votes
1answer
39 views
How many tables can you put in one windows azure storage account? [closed]
The documentation I see says that there can be "Many" tables in one storage account.
Does anyone actually know the limit?
0
votes
1answer
37 views
Update Azure Staging deployment will create new url
I am using cloud service for my web application currently it is in development phase. My all updated code is on staging environment, I have create staging server on May 13, 2012. Now from last two ...
1
vote
2answers
70 views
Can't programmatically set permissions to blob container in Azure Storage
After creating a blob container with CreateIfNotExists(), I immediately call SetPermissions() to allow users public access to the blobs in the container, but not to the container itself.
Like so:
...
0
votes
1answer
24 views
Azure Queues: How to determing when the message invisibility timeout going to expire
In Azure Queues, Is there a way to find out when the message invisibility timeout going to expire. I want to check to see if the timeout's going to expire and extend if required.
0
votes
1answer
54 views
Not able to update an entity of type string in azure table storage to null
I have user table which has an attribute called "PictureUri" of string type. By default its null and then i update it to some text. Later if i try to update it to null again, it doesnt happen. The ...
1
vote
1answer
89 views
Azure Media Services upload from HTML from
I have an MVC4 site allowing video to be uploaded. It's hosted on Azure as an Azure website.
As such I don't have access to any local storage in which to cache the Video before shipping it off to ...
0
votes
1answer
73 views
How to evaluate valid Azure Blob Storage Container names? [closed]
Using a few hours debugging my application, I ended up finding that there are some limitations that I had not taken care of for the container naming.
You can see the limitations in the answer.
Code ...
1
vote
1answer
54 views
How can I access the automagically-created CLOUD_STORAGE_ACCOUNT connection string in Azure?
When you associate your website with a storage account, a connection string is automatically created in your configuration:
However, I can't figure out how to get this connection string at runtime. ...
-1
votes
1answer
34 views
How to specify another domain?
I have own url. However, I cannot state this url after I have deployed my web site on Windows Azure. WindowsAzure gives me such address with addition: ".azurewebsites.net".
How to state my own ...
0
votes
1answer
55 views
How to deploy application in windows azure with text file?
I have created a mvc4 application with text file. I write some data in a file "ddd.txt". I wrote such address at my PC: "@D://Project//ddd.txt" and it worked finely. However, when I deploy my website ...
-1
votes
1answer
61 views
Free hosting plan on windows azure [closed]
I am thinking about deploying my two webapps on azure. The only thing I want to know is how much RAM they offer in 3 months trial as my apps atleast requires 1GB of RAM. Kindly guide me.
Thanks
1
vote
1answer
365 views
Error in loading Azure Storage 2.0 — could not load Microsoft.Data.OData 5.0.2
My hosted service uses Azure Storage 2.0 (exactly 2.0.5.1 from Nuget). Under Visual Studio 2010 I had no problem. I switched to Visual Studio 2012 and now in some web site of my main web role I get ...
1
vote
1answer
104 views
Getting broken images from blob storage in Azure websites
My php code seems correct, (the part that talks to blob storage).
//talk to blob storage, get links, based on file name
$storageClient = ...


