Book Image

Microsoft Silverlight 5 and Windows Azure Enterprise Integration

By : David Burela
Book Image

Microsoft Silverlight 5 and Windows Azure Enterprise Integration

By: David Burela

Overview of this book

Microsoft Silverlight is a powerful development platform for creating rich media applications and line of business applications for the web and desktop. Microsoft Windows Azure is a cloud services operating system that serves as the development, service hosting, and service management environment for the Windows Azure platform. Silverlight allows you to integrate with Windows Azure and create and run Silverlight Enterprise Applications on Windows Azure This book shows you how to create and run Silverlight Enterprise Applications on Windows Azure. Integrating Silverlight and Windows Azure can be difficult without guidance. This book will take you through all the steps to create and run Silverlight Enterprise Applications on the Windows Azure platform. The book starts by providing the steps required to set up the development environment, providing an overview of Azure. The book then dives deep into topics such as hosting Silverlight applications in Azure, using Azure Queues in Silverlight, storing data in Azure table storage from Silverlight, accessing Azure blob storage from Silverlight, relational data with SQL Azure and RIA, and manipulating data with RIA services amongst others.
Table of Contents (19 chapters)
Microsoft Silverlight 5 and Windows Azure Enterprise Integration
Credits
About the Author
Acknowledgement
About the Reviewers
www.PacktPub.com
Preface

Using queues for application scalability


Due to the elasticity offered by Windows Azure, architecting applications that can scale in the cloud is slightly different from creating a traditional application. When creating cloud-based applications, you should be thinking about breaking your system into smaller independent components. These components need to be decoupled from each other and must be able to run asynchronously. Once separated, the components can be scaled, independent of each other. Rather than a very coarse level of "scaling the application server", the individual components of the system that are creating the bottlenecks can be scaled.

If the system is to do any useful work, then these decoupled components should be able to message and communicate with each other. Queues are the ones that facilitate the communication between different areas of the application. Queues provide two main benefits: durable asynchronous messaging and the ability to buffer work to be done.

Asynchronous...