Cloud Computing

There are 8 entries for the tag Cloud Computing

Windows Azure Tools and SDK 1.1 (February 2010)

There is a new release for Windows Azure today with a refresh of the Windows Azure SDK (1.1, February 2010) and the Windows Azure Visual Studio Tools (1.1, February 2010). If you want code samples, as usual, go to Windows Azure Code Samples on Code Gallery. UPDATE: So as not to mislead; If you are using Visual Studio 2010 only on your system the Windows Azure Tools for Visual Studio requires Microsoft Visual Studio 2010 RC which is not yet released. But with Visual Studio 2008 you are safe. The biggest news in there is that you can...

Azure Contrib @ CodePlex updated to the November CTP

The enhanced (intelligent) Windows Azure Project template @ AzureContrib.codeplex.com is now updated to run on Windows Azure Tools for Microsoft Visual Studio (November 2009). There is a new piece of code for managing logging (tracing) with the new Microsoft.WindowsAzure.Diagnostics functionality. The Microsoft.WindowsAzure.ServiceRuntime has been updated to reflect the recent changes to the Azure runtime including support for the new Windows Azure Role Lifecycle. The new Microsoft.WindowsAzure.StorageClient release is pending but that takes a bit of more work. The goal @ AzureContrib where Cloud Storage is concerned is to enable so called Persistence Ignorance (PI). The PI thing is...

Extensible Windows Azure projects using MEF

Here is how to enable a rich extensibility model for Windows Azure projects and how to run create jobs on Windows Azure Storage only once in your Windows Azure Projects. This sample and related AzureContrib release leverages Managed Extensibility Framework (MEF) – an upcoming .NET Framework component in .NET Framework 4.0. We have made a small project at Dotway where I work on making the basic Windows Azure project template a bit more rich and intelligent. This has lead to three releases in the AzureContrib project, each one building on the last to make the functionality one more step...

Using the CloudStorage.API: The Entity Storage

The third and final post in our blog series on basic usage of the Cloud Storage API (CloudStorage.API). This time we will show how to interact with the Cloud Entity Storage. The implementation we use for the API is developed against Azure but the API should be reusable for any type of Cloud Storage. While doing this our main goals are to: Enable testability Abstract away storage Create an extensible and easy to evolve application that supports good developments practices Here are other posts...

Using the CloudStorage.API: The Blob Storage

We continue our blog series on using the Cloud Storage API (CloudStorage.API) by showing how it interacts with Cloud Blob Storage. As in the previous post we will use a short example focusing on basic usage. The implementation we use for the API is developed against Azure but the API should be reusable for any type of Cloud Storage. While doing this our main goals are to: Enable testability Abstract away storage Create an extensible and easy to evolve application that supports good developments practices ...

Seminar on Windows Azure Development done – slides

Today I did a seminar with msdn.se. I was on stage with Johan Lindfors and Robert Folkesson talking about Windows Azure devlopment. I was asked to produce my slides so in an effort to please the crowd here they are. Several of them are copies of slides from Steve Marx, Manuvir Das and Brad Calder. This is my angle on their work so to say, thanks guys. DevelopmentOnWindowsAzure.pdf (First three slides are in Swedish but not the rest.) Cheers, M. Technorati Tags: Microsoft,Windows Azure,Software Architecture,Cloud Computing,Cloud Storage

Using the CloudStorage.API: The Message Queue

Now that you have an understanding of the idea behind the Cloud Storage API it’s time to show it in action. We will start by writing a simple application accessing the Message Queue using the API. Note: Premier time for a guest blogger at Techie.notepad! WooHoo! Peter von Lochow is the man behind this post. The implementation we use for the API is developed against Azure but the API should be reusable for any type of Cloud. While doing this our main goals (just to reiterate) are: Enable testability Abstract...

Introducing the Cloud Storage API

The ultimate goal for this API is to enable Cloud Storage Persistence Ignorance. A secondary, and almost equally important, objective for creating this API is to enable testability and thus enhance the over all maintainability of Cloud Applications that make use of Cloud Storage also generally thought of as “shared state”. We have been doing this work on the Windows Azure cloud but in theory this API may be used on any Cloud Storage. Note: We have created a Cloud Storage API at the consultancy where I work, Dotway. Me and a great colleague Peter von Lochow have been...