Integrating Integrators – BizTalk, Windows Azure, Windows Workflow, and Beyond

Azure AppFabric

This group is for Platform Azure AppFabric. It contains information about the cloud offerings for AppFabric including the Service Bus, Caching, and Access Control.
Azure AppFabric Media Gallery - Samples, Videos, and other Downloads
Type Title Downloads Rating

European BizTalk Convention - Service Bus with Message Broadcasting

This download contains the power point slides and code from the Azure Platform AppFabric session at the...
Posted to: Windows Azure AppFabric Downloads
by 667
Page 1 of 1 (1 items)
AppFabric Community Feed
  • AppFabric Community Blogs via Syndication

    DotNed Podcast: Peter Provost over unit testen

    In deze podcast spreekt Hassan Fadili met Peter Provost over unit testen. Peter Provost is een senior program manager voor Microsoft Visual Studio waar hij aan de agile tools werkt. Tijdens Tech-Ed Europe was hij in Amsterdam voor diverse sessies over TDD en Agile development. Links: Blog: http://www.peterprovost.org/ Tech-Ed sessies: http://channel9.msdn.com/Events/TechEd/Europe/2012?s=peter%2Bprovost Team Test Blog: http://blogs.msdn.com/b/vstsqualitytools/ What's new for MSTest Unit Tests...
  • AppFabric Community Blogs via Syndication

    Using CDN’s to speed up your websites

    One of the easy ways of speeding up a web application is by using a CDN or content delivery network. The main purpose of a CDN is serving up resources that are not specific to you site. The quintessential example of using a CDN is jQuery. There are many websites using jQuery, according to some statistics some 50% of all websites. And if each site hosts its own copy of jQuery everyone has to download it multiple times. How often depends but assuming everyone does a perfect job of adding cache settings...
  • AppFabric Community Blogs via Syndication

    How to make a library portable and data binding friendly at the same time?

    Here is the challenge.  Create a portable library that could be used by almost anything including Console Apps, Windows Phone, ASP.NET, Xbox 360 Make it data binding friendly for targets like WPF, Silverlight and Windows 8 XAML Metro Apps by supporting property and collection changed notifications. Make it efficient so that users who don’t need data binding are not penalized with a performance hit and having to reference libraries they don’t need. Write Unit Tests to demonstrate that the solution...
  • AppFabric Community Blogs via Syndication

    Using SignalR for real time data updates

    In a previous post I showed how easy it is to create a simple chat application using SignalR . And chatting on the internet might be popular but as it turns out there are rather a lot of applications that need to do more than just chat. As it is there are a lot more CRUD style applications, where users edit data usually stored in a database for some purpose, than chat applications. So in this blog post I am using a simple CRUD, without the delete part, application to show the power of SignalR . Traditionally...
  • AppFabric Community Blogs via Syndication

    How to use LINQ in a Workflow

    Question Can I use a LINQ Query such as the following in a Workflow? private static void ShowQueryWithCode(IEnumerable< string > names) { Console.WriteLine( "Linq Query in Code - show names that start with 'R'" ); // Assuming there are no null entries in the names collection var query = from name in names where name.StartsWith( "R" ) select name; // This is the same thing as // var query = names.Where(name => name.StartsWith("R")); foreach (var name...
Page 111 of 125 (623 items) «109110111112113»