Tagged Questions
0
votes
0answers
6 views
Fire Session_OnEnd using “Custom” session mode
I am using Azure Caching to store session state for that i have to change the Session mode to "Custom" from "InProc". It's working fine i am able to create and use sessions as well as session is ...
0
votes
1answer
109 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
55 views
How to do a bulk insert using WCF in a Worker Role
I have a WCF running in a Worker Role with a method that does an insert in Tables.
I have a lot of clients that will access this method to insert data in Tables, but I really need performance on ...
0
votes
1answer
107 views
Exception when trying to connect to SQL Azure Database
I am completely new to Windows Azure.
I currently have a local db for my .NET application. I have created an azure account along with a relevant SQL Azure Database.
I am working on adding the C# ...
1
vote
1answer
77 views
Windows Azure: Can't see trace listener's output in diagnostics logs
i want to log some messages using trace listeners in windows azure diagnostics. I am able to see the blob that diagnostics created on my permanent storage but i can't see the trace listener's output.
...
1
vote
1answer
105 views
Using List<string> with Azure Table Storage
I am currently making use of the Windows Azure Table Storage Mechanism, having a class which extends TableEntity. However, one of the fields of this class is a List. When getting the entity back from ...
0
votes
1answer
123 views
Change to AsTableServiceQuery() in Client Storage Library 2.0
When using the TableServiceContext to query Azure Table Storage I would perform a query like this:
var entities = context.CreateQuery<TEntity>(TableName)
...
3
votes
1answer
202 views
Storage Client Library 2.0 - Why is the API not as intuitive to use as 1.7?
I am migrating to using the new Storage Client Library for my Azure Table Storage.
Querying with the previous Storage Client Library 1.7 namespace:
var orders = serviceContext
...
0
votes
1answer
77 views
How do I upload to Azure Blob storage without overwriting?
Calling UploadFromStream overwrites files by default - how can I make sure I only upload a blob if it isn't already in the container?
CloudBlockBlob blockBlob = ...
0
votes
1answer
74 views
How to get size of Azure CloudBlobContainer
I'm creating a .net wrapper service for my application that utilizes Azure Blob Storage as a file store. My application creates a new CloudBlobContainer for each "account" on my system. Each account ...
3
votes
2answers
143 views
Azure emulator - how to start from mvc project
I have an MVC project that uses Azure Storage and has been successfully deployed to Azure. However, when run locally, it does not start the Azure emulator. The only way I have found of starting the ...
2
votes
1answer
49 views
Does using IfModifiedSince access condition reduce the number of Azure Blob Storage transactions?
There's BlobRequestOptions.AccessCondition property that can be set to IfModifiedSince so that for example ListBlobs() returns only the blobs modified after specified time.
Now the description for ...
2
votes
0answers
124 views
How can I resolve a reference when its .NET dependency has a version mismatch?
I am trying to include the WindowsAzure.Storage library in my Windows Phone 8 project, but it cannot resolve the reference because of this error:
Warning 3 The primary reference ...
1
vote
1answer
232 views
Unable to Upload File to Windows Azure Blob
I'm trying to upload a file to a Windows Azure storage blob. I feel like I'm trying something really basic. I have a new ASP.NET MVC 4 Web Application (as in File->New Project...). When I get to the ...
0
votes
2answers
328 views
WindowsAzure.Storage v2 StorageException
I'm migrating from WindowsAzure.StorageClient 1.7 to WindowsAzure.Storage 2.0, and I'm working right now on the management of the exceptions. Following this guide and other sources, I found out I had ...
-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)
{
...
0
votes
2answers
138 views
Azure Table Storage: 404 Error during execution of Insertion
I am writing a query to insert 300k rows to a table, i get a 404 File or Directory not found error during the execution of insertion. i am a noob to azure so i may have written some stupid code
I ...
0
votes
2answers
463 views
Azure Cloud Service Worker Role Crashing and Unhealthy
I have a project with one Web role and one Worker role.
Both my web and worker roles work as intended whenever I locally test it. (Note, although the local version uses the Azure Compute Emulator, the ...
0
votes
0answers
255 views
Why would I get “The specified blob does not exist” after the blob has been uploaded?
I'm reviewing logs of my Azure web service and see a logged exception:
The specified blob does not exist.
Microsoft.WindowsAzure.StorageClient.StorageClientException
at ...
-1
votes
1answer
186 views
session management windows azure
How does azure manage asp.net style session management.
for eg in general asp.net applications when multiple users are hitting the applcations.
username is stored in session which is available to each ...
2
votes
2answers
171 views
Conflict between System.Net.Caching.HttpRequestCachePolicy and CloudBlob.FetchAttributes
I seem to be getting a 403:
HTTP/1.1 403 Server failed to authenticate the request. Make sure the value of Authorization header is formed correctly including the signature.
This happens when I use ...
1
vote
2answers
188 views
loading lots of Azure blob data in a WPF app
I've been given a task to build a prototype for an app. I don't have any code yet, as the solution concepts that I've come up with seem stinky at best...
The problem:
the solution consist of ...
2
votes
1answer
335 views
Azure october 2012 sdk - how to delete a table entity without retrieving it first?
In the previous version we could do this to delete an entity without knowing whether it exists.
svc = new TestContext();
item = new TestEntity("item2pk", "item2rk");
svc.AttachTo("TestTable", item, ...
9
votes
2answers
231 views
Is Azure CloudTable thread-safe?
I'm writing to Azure Table storage using Storage SDK 2.0 from different threads (ASP.NET application).
Is CloudTable object thread-safe? Can I initialize CloudStorageAccount, CloudTableClient and ...
0
votes
2answers
368 views
Azure Blob Lease and release
string uri = "myurl";
string blobstatus = GetBlobStatus(uri);
if (blobstatus != LeaseStatus.Locked.ToString())
{
string response = AquireBlob(uri);
//process data.
string abc = ":em";
...
0
votes
2answers
161 views
Why would I get year 2555 when formatting DateTime with current time?
I have C# code that does the following:
DateTime now = DateTime.UtcNow;
string timeToOutput = now.ToString();
String pathInStorage = now.ToString("yyyy-MM-dd/HH/");
CloudBlobClient client = ...
0
votes
1answer
26 views
Creating Directory in the Memory
How can we create a directory in the Memory as a stream and then using the System.IO package for the zip the package directory.
Additional Info : I need to do it memory because i will be using it in ...
2
votes
4answers
703 views
Quering azure table for multiple entities
I'm writing azure application.
My questions concerns quering azure table for specific entities.
Application stores statistics of words used by users.
In table patritionkey is the language and row key ...
0
votes
2answers
100 views
Azure - Table Storage modeling
Is there an reference about how to properly design Table Storage data? What to put in the partition and what in the table? Are there any principals to follow(like ER model in SQL)?
0
votes
0answers
127 views
CloudBlob.DownloadText method inserts additional character?
The following unit test fails:
[TestMethod]
public void Add_file_to_blob_and_retrieve_it()
{
var blobName = Guid.NewGuid().ToString();
var testFileContents = File.ReadAllText(TestFileSpec);
...
1
vote
3answers
667 views
How see contents of my azure drive?
I'm training with Azure environment and I have some trouble with the object CloudDriver.
I have mounted a drive on a blob (on the Storage Emulator) but I can't see it with a GUI as CloudBerry or ...
2
votes
1answer
668 views
How do I serialize a .NET object into Azure Blob Storage without using a temporary file?
I want to store a .NET object into Azure Blob Storage.
Currently I serialize it into an XML file using TextWriter (episodeList is the object I want serialized):
XmlAttributeOverrides overrides = new ...
1
vote
2answers
227 views
Azure Diagnositcs not storing data, even with default application
I am trying to store the azure diagnostics data on the storage account.
I have tried the following code:
public override bool OnStart()
{
// For information on handling configuration ...
1
vote
2answers
505 views
Query azure table by collection of row keys
I need to do a look up of several entities by collection of row keys (in one partition). What is the proper query to do it?
-7
votes
1answer
153 views
implement REST interface on windows Azure platform [closed]
Can any one help me.
Recently i have got a difficulty on implementing a simple REST interface on windows Azure cloud platform, I need to use .net and c# as programming language.
The Rest interface ...
1
vote
3answers
193 views
Upload large SQL database to Azure Table Storage
I have a single database table with 10 fields and over 30 million rows. This is ideal for table storage as I only need to search on one column, but return the rest.
I have written a program which ...
0
votes
1answer
355 views
Online leaderboard for my non-XBL WP7 XNA game
I want to host global leaderboard for my WP7 XNA game for people around the world.
There's already a local leaderboard in the game, but I want to make it shareable, so anyone can see the top 10 ...
2
votes
2answers
653 views
.Net Class Library Unit Test Setup Step for All Tests called only once
I have a class library and associated test library. The class library needs to have the Windows Azure Storage emulator started at the beginning of the run regardless of how many classes or tests are ...
18
votes
11answers
14k views
Could not load file or assembly 'msshrtmi' or one of its dependencies (Azure Table Storage Access)
I have an HTTPModule that I use to redirect traffic between a website in my data center and a website running on the Azure platform. This HTTPModule retrieves its redirect rules from Azure Table ...
0
votes
1answer
387 views
Azure storage tables, questions regarding query and query processing
I have two short question regarding Azure Storage Tables.
Is there something like an overview of the techniques I can use to query a storage table? I found an example for LINQ, are there ...
7
votes
1answer
202 views
Azure/AWS ORM Design Guidelines
I'm designing and implementing .Net ORM that must support both Azure Storage (tables, queues, blobs) and AWS Storage (EBS, SimpleDB, S3) and hide all implementation details behind a common interface. ...
5
votes
3answers
5k views
Windows Azure Trace Log not working
I'm sure I have missed something simple but I can't get simple Trace.WriteLine to work on Azure.
Steps I have taken:
Microsoft.WindowsAzure.Plugins.Diagnostics.ConnectionString has been set up to ...
2
votes
3answers
1k views
Azure Table Complex Data Best Practices
I'm working on a research project that needs to store complex data as entities in an Azure Table. The entities for the table are cells that contains many geometric points and lines, with references to ...
1
vote
2answers
498 views
How to enforce CloudTableClient to use default proxy which is configured in IE or use a proxy address to connect to the internet
I am getting the following exception when i try to connect from my code. But NeudesicLLC's AzureStorageExplorer is able to connect by detecting the proxy server settings which is configured in IE. Is ...
0
votes
2answers
132 views
Azure development storgare service running as a windows service
I am working on a project that is a very large central media repository that uses Azure storage to house all of our external binaries that will be cosumed by 3rd party applications. We have the app ...
15
votes
5answers
4k views
Windows Azure Storage vs. SQL Azure
I saw that there was a similar question asked several months back, but it really didn't address my situation well. Here it goes...
I'm in the process of building from scratch a web-based, .NET ...
0
votes
3answers
690 views
Best way to download data from Windows Azure Table
I need to download data from windows azure table storage back to a SQL Server database inside the office network every night. There could be up to 100,000 entries in the table. What’s the most ...
2
votes
2answers
671 views
Altering tables with Windows Azure
I'm using the following method to create tables in Windows Azure. This code is executed only once when the application is first initialized
...

