0
votes
2answers
18 views

Local Storage Error in Windows Azure

I'm having a problem when I start the Azure Storage Emulator: I have tried to do the tips in the url informed into the window, but nothing is working. Anyone can help?
0
votes
1answer
82 views

Checking if container and blob exist in Azure Blob Storage using built in Exists method

I found this extension method to check Blob storage exists Testing Existence of a Windows Azure Blob Checking if a blob exists in Azure Storage However, I found similar build in utility methods ...
-1
votes
0answers
57 views

How to fetch data from in-built database in asp.net web form application [closed]

I'm making asp.net web form project which includes storage sharing over cloud (Azure) using Visual Studio 2012. I'm facing problem in accessing the in-built database of web form i.e the membership ...
0
votes
0answers
39 views

embed access database in asp.net(C#)

im using access database in my asp.net website. the connection string runs successfully in local. But when my website is hosted the database in not getting connected. Any help from experts are ...
1
vote
0answers
42 views

how to link css file to aspx in azure host?

I have asp.net app that I am trying to upload to azure host. first I have try to link in the traditional way with Css folder and link to it <link ...
0
votes
2answers
41 views

How to reference js and css files in page head in azure storage?

How to reference js and css files on page head in azure storage ? I have tried : CSS/AppConst.css // --> this working only locally ~/CSS/AppConst.css I am getting this error : GET ...
0
votes
0answers
83 views

What is the best/simplest way to connect my Silverlight 5 web-app to a Windows Azure database?

I have a fairly simple project in progress where I create a very basic upload/download capable Silverlight 5 app to upload a user-selected file from their local machine to an Azure database. After ...
0
votes
0answers
123 views

Upload file to ftp from blob storage

I have files stored at azure blob. Now i want to transfer file directly form blob to ftp server. I have tried this: WebClient wc = new WebClient(); Uri uriadd = new ...
1
vote
2answers
103 views

How to online view ,edit and attach signature to the document placed in windows azure storage

I have a sample application where client A upload some sample document to windows azure storage , I want to build a user interface where client B views,edits and attaches a signature to the document ...
0
votes
2answers
256 views

Is it possible to deploy a WCF service and a WebSite in the same WEBSITE PORTAL from AZURE?

I' deploying two services, one of them is a website and the another is a WCF Service for desktop applications. I have one web site called contoso2.azurewebsites.net and that place I place my web ...
-1
votes
1answer
117 views

Error when try to save in Windows Azure Table

I did a method which add a user in storage. Below is the code and the error that I'm getting. public string addusr(string nome, string cidade, string cpf, string email, string telefone) { ...
1
vote
0answers
101 views

Migrate asp.net web site and error WAT070 on window azure sdk

I try to follow this link for migrate asp.net site to windows azure.After Convert to Web Application when I try to debug I got a following error. Error 106 WAT070 : The referenced assembly ...
0
votes
0answers
150 views

Migrate asp.net site to windows azure and Error 102 WAT080

I try to migrate asp site to windows azure.I follow this following link. http://blogs.msdn.com/b/zkap/archive/2012/07/29/how-to-migrate-an-existing-asp-net-website-to-windows-azure.aspx After follow ...
0
votes
1answer
163 views

Response.TransmitFile vs. Direct Link

I am using a Azure cloud storage solution, and as such, each file has it's own URL. I need to allow users to download files such as PDFs from our ASP .Net website. Currently, we are using ...
0
votes
1answer
65 views

Resource file is not included when packaging and publishing web role on windows azure

I want to deploy a web role on Windows Azure. The project contains a large resource file (in fact, a dictionary file with extension .dct). After packaging with vs2010, I investigate the .cspkg file, ...
0
votes
1answer
71 views

How to solve this error for 'Windows Azure' Conversion ASP.NET 3.5 to 4.0?

I found an Error when I convert my Windows Azure(ASP.NET) project .NET 3.5 to 4.0. Getting error: SetConfigurationSettingPublisher needs to be called before FromConfigurationSetting can be used ...
2
votes
1answer
56 views

Shared storage for both worker and webrole in azure

Can i have shared temporary storage for both worker role and web role for an azure application ? I have a video upload section in my application, and there on uploading an mp4 video it will stored in ...
0
votes
1answer
289 views

Azure blob storage upload fail

I have an Azure Blob Storage where I want to upload some files. Index.cshtml @using (Html.BeginForm("File_post", "MyController", FormMethod.Post, new { enctype = "multipart/form-data" })) { ...
2
votes
3answers
297 views

Is there any open source folder/browser/creator for Azure Blob Storage?

We are looking to create a document management area that models a standard folder structure using Azure blob storage in an MVC3 applicaiton. E.g. Users can create folders User can upload ...
0
votes
1answer
160 views

Azure storage download on IE9 changes the file extention to ZIP

I allow users to download files from a Windows Azure storage pool by using SAS (cf. this discussion). The SAS is being constructed and next the Request.Redirect(targetURL) is called to redirect the ...
0
votes
1answer
497 views

Azure download with GetSharedAccessSignature of large file

Through a webpage, I want to allow users to download (very large) file stored on Azure Cloud storage. I use the GetSharedAccessSignature to allow users to download it (note: the Container is protected ...
0
votes
1answer
213 views

File system issue when porting an ASP.NET application to Azure

I have an existing ASP.NET website that I would like to port to Azure within my free trial. I would like the migration to be as painless as possible. The application uses log4net and NHibernate, plus ...
1
vote
1answer
109 views

How to keep files without overwriting in Azure

We are using azure for our application. Everytime I deploy a new version of the application through Visual Studio it removes all files from azure storage and puts a fresh version from my local files. ...
0
votes
2answers
938 views

Windows Azure Table Storage query error - One of the request inputs is not valid

I am trying to query against the table storage but I am getting the following error: <?xml version="1.0" encoding="utf-8" standalone="yes"?> <error ...
0
votes
1answer
426 views

ASP.NET chart custom handler

Before while my web application was "on-premise" solution I used "standard" asp.net chart control with disk storage mode. Like this : <asp:Chart ID="AssetDistChart" runat="server" ...
0
votes
1answer
420 views

Azure diagnostics and WadLogsTable

I deployed an application on Windows Azure, i activated the diagnostic monitor like follows : public override bool OnStart() { CloudStorageAccount account = ...
0
votes
1answer
386 views

Speeding up Azure Storage API with NET4 and .NET 4.5 Parallel Extensions

The .NET 4 and 4.5 whitepapers have comments about how the parallel library can speed up performance of IO access. (example of a buffered serial queue below) Question: Has anyone successfully ...
1
vote
2answers
286 views

Azure web application how to show error message

I am developing an web application on Azure, on occurrence of exception I want to display an error message to the User on a custom error page. What is the best practice, I don't want to use Session ...
-2
votes
1answer
66 views

Windows Azure asp .Net f/w

Error 1 The type or namespace name 'ApplicationBlocks' does not exist in the namespace 'Microsoft' (are you missing an assembly reference? Any Help
0
votes
1answer
211 views

How do i Open the Word Document Stored in Cloud Storage in Browser using ASP.NET Web Application

I am Using Windows Azure Blob Storage for Storing the word Document typed using MS word . I want My Web User to View the Doc Files in ASP.Net Application. Online Viewing is the First part and Editing ...
2
votes
1answer
303 views

Host ASPNET pages in Windows Azure Blob Storage?

There's a section of a web site I maintain that has many thousands of pages that are fairly static. They are ASPX pages, but they have no code-behind. They DO have references to a master page and ...
0
votes
1answer
170 views

Compute needed to use Azure blob storage?

I have an ASP.NET application running on shared hosting and want to use Windows Azure blob storage to store images (my shared hosting has limited storage). My application will upload and download ...
3
votes
2answers
1k views

How to call ffmpeg.exe to convert audio files on Windows Azure?

I run a Web Role on Windows Azure to receive AAC audio files (uploaded by base64 string) and store them into blob. it works fine by now. Next, I also have to convert them into MP3 and store the MP3s ...
1
vote
1answer
167 views

Where to store binary format database when uploading to Azure in order to reduce package size?

We are using the city database GeoLiteCity in our C# web site hosted on Azure. As they recommend, we use the binary: GeoLiteCity.dat. This file is included in our project. The problem is that the ...
0
votes
1answer
134 views

Architecture of adding Azure Blob Storage to non-cloud ASP.Net/Silverlight application

I'm having trouble getting started, or finding a relevant example, using Azure Blog Storage from a non-Azure asp.net and silverlight application. I have a Silverlight browser app, hosted in an asp.net ...
0
votes
2answers
68 views

What ways to make data accessible via mobile borwser?

I have built a website with asp.net/c# ,jquery,SQL Server 2008. The website and data are hosted inside a hosting company. I want to build a mobile version of the website.how can i make the data(that ...
0
votes
2answers
374 views

Trying to save a generated heatmap in Azure Storage

I have a Heatmap that currently works on a stand alone sever that I am porting to Azure Storage. How do I go about saving the butmap file in Azure Storage. Originally I had a entry in my web.config ...
1
vote
2answers
644 views

generating images in Azure asp.net

I'm currently running a site of a dedicated server but want to scale up using Microsofts Azure cloud platform in the future but im unsure if a certin part of my code will work on azure. The site ...
2
votes
1answer
820 views

Why does Html.DisplayFor and .ToString(“C2”) not respect CurrentUICulture?

In my ASP.MVC 2.0 website I have the following setting in web.config: <globalization uiCulture="da-DK" culture="en-US" /> When I try to display an amount in a view using Html.DisplayFor() or ...
0
votes
2answers
771 views

Windows Azure Storage in VB: Not running in a hosted service or the Development Fabric

I'm trying to run an instance of the Azure Blob Storage in the Azure Visual Studio 2010 development environment, but keep getting the following error: System.InvalidOperationException: Not running in ...
1
vote
1answer
1k views

Unable to start azure application in dev fabric

Suddenly my windows azure application is stopped running in dev fabric. It was working fine. When I added two project "AspProviders" and "StorageClient" in my solution then, its not running. It is ...