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

Browse by Tags

AppFabric

This is the top level group for Microsoft AppFabric. Find blogs, samples, videos, and learning resources for Platform Azure AppFabric and Windows Server AppFabric here.
Tagged Content List
  • Blog Post: Unit testing code depending on the ASP.NET #WebApi HttpClient

    In a previous post I showed how to unit test an ASP.NET WebAPI Controller. But with a REST service there is both a client and a service component. Assuming for a moment the client part is also written in C# we should test that as well. In this case the client application contains the following class...
  • Blog Post: Excellent rest met de WebAPI #TechDaysNL

      De PowerPoint slides Excellent rest met de web api from Maurice Beijer En hier staat de bron code.   Enjoy! Blog Post by: Maurice
  • Blog Post: DotNed podcast: Ronald Harmsen over Async/Await en Tasks

    In deze podcast spreekt Maurice de Beijer met Ronald Harmsen. Ze hebben het over de nieuwe async en await keywords in C# 5. Daarnaast hebben ze het uitgebreid over verschillende vormen van asynchroon programmeren zoals de ThreadPool, Task en IO completion ports. Links: Blog : http://www.ronaldharmsen...
  • Blog Post: Using SignalR for real time communication on the web

    In a previous blog post I mentioned how exited I was about WebSockets and the future with real time duplex communication over the Internet. Unfortunately the current support for WebSockets, both on the client and on the server, is still somewhat limited making this a thing of the future. Does that mean...
  • Blog Post: DotNed podcast: Jeff Prosise about the future with Silverlight, HTML5/JavaScript and Windows 8

    In this podcast Dennis Vroegop speaks with Jeff Prosise about the future of software development for the .NET developer. Links: Blog: http://www.wintellect.com/cs/blogs/jprosise/ TechDays presentation : http://www.techdays.nl/SprekerDetail.aspx?cid=2136 Thanks to out sponsor RedGate .   http://dotned...
  • Blog Post: Query composition with the ASP.NET Web API

    Having the ASP.NET Web API as a REST service returning data is kind of nice but to be efficient on the wire we don’t want to return more data that required only to discard it in the client.   As we have seen in a previous post just returning a collection data was real easy.   As it turns out...
  • Blog Post: Installing ASP.NET MVC 4 Beta breaks ASP.NET MVC 3 RTM applications

    We where just bitten by this one and the problem was not immediately obvious. You will see some error like The name 'model' does not exist in the current context or 'System.Web.WebPages.Html.HtmlHelper' does not contain a definition for 'ActionLink' and no extension method 'ActionLink'...
  • Blog Post: Updating data with the ASP.NET Web API

      In the previous blog post I demonstrated how to get started with the ASP.NET Web API and retrieve some products data from the Northwind database. Something that was really easy to do But quite often we want to update data just as much as we want to retrieve it.   A quick recap of REST and...
  • Blog Post: Getting started with the ASP.NET Web API

    Some time ago I did a number of blog posts about the beta versions of the WCF Web API . As it turns out the WCF Web API team has moved into the ASP.NET team, a good thing as far as I am concerned, and as a result it is now called ASP.NET Web API . Now this is much more that just a name change. For starters...
  • Blog Post: DotNed podcast: Client web ontwikkelingen met Steve Sanderson

    In deze, tijdens de TechDays opgenomen, podcast spreekt Maurice de Beijer met Steve Sanderson over de toekomst van web development met de moderne browsers. Ze spreken ondermeer over Knockout.js, een JavaScript library die MVVM stijl databinding mogelijk maakt binnen HTML/JavaScript applicaties. Je kan...
  • Blog Post: Windows Workflow Foundation 3 Types Marked Obsolete in .NET 4.5

    People have been wondering for a while what the future of WF3 was since the release of WF4. So far both workflow stacks have coexisted in .NET 4 and there has been no official statement about the future of the older WF3 stack.   That has just changed! The workflow team at Microsoft has just announced...
  • Blog Post: Getting Started with WCF and Rest material

    Thanks everyone for joining in with the DevelopMentor webinar I did last night on Getting Started with WCF and Rest . If you want to take another look at the slides or samples you can download them using the links below: PowerPoint slides . ASP.NET MVC 3 project containing the REST service .   For...
  • Blog Post: Wat doe ik met HTML5 op de Microsoft TechDays 2012?

    Uiteraard ben ik ook dit jaar weer aanwezig op de Microsoft TechDays 2012 . Voor degene die het gemist hebben de TechDays zijn dit jaar van 15 t/m 17 februari in Den Haag.   Ik doe dit jaar twee sessies: Op vrijdag middag doe ik een sessie over het maken van een HTML5 client voor REST services ...
  • Blog Post: DotNed podcast: Freena Eijffinger over Autisme en de Surface

    In deze podcast spreekt Maurice de Beijer met Freena Eijffinger over autisme en hoe Freena de Microsoft Surface tafel gebruikt om autisme te diagnotiseren bij kinderen. Met dank aan onze sponsor: Red-Gate, ingeniously simple tools Links: Autitouch: http://www.autitouch.com/ Freena: http://www.freena...
  • Blog Post: #DotNed podcast: Bart De Smet over RX (Deel 2 van 2)

    In deze podcast spreekt Maurice de Beijer met Bart De Smet over het RX framework. Bart werkt bij Microsoft aan de RX librray en verteld hoe deze ontwikkeling oorspronkelijk is begonnen als een onderdeel van een veel groter cloud programmability project.   http://www.dotned.nl/PodCasts.aspx?id=21...
  • Blog Post: #DotNed podcast: Bart De Smet over RX (Deel 1 van 2)

    In deze podcast spreekt Maurice de Beijer met Bart De Smet over het RX framework. Bart werkt bij Microsoft aan de RX librray en verteld hoe deze ontwikkeling oorspronkelijk is begonnen als een onderdeel van een veel groter cloud programmability project. Links: Blog: http://community.bartdesmet.net/blogs...
  • Blog Post: Using HTML5 WebSockets

    In previous blog posts I wrote about using Server-Sent Events so send data from the server to the browser. This works but has the drawback that it is a one way messaging from the server to the browser. There is nothing preventing you from doing ajax style calls back to the server but basically you are...
  • Blog Post: DotNed Podcast: Jurgen Thysmans en het Tweakers Testpanel voor de Nokia Lumia 800

    In deze podcast spreekt Maurice de Beijer met Jurgen Thysmans van Nokia over wat de omschakeling van Nokia naar het Windows Phone 7 platform allemaal voor gevolgen gaat hebben. Tevens bezoeken we het Testpanel Nokia Lumia 800 dat die avond door Tweakers en Nokia samen georganiseerd werd en waar 40 testers...
  • Blog Post: Customizing the checks Modernizr does

    In the previous blog post I demonstrated how to use Modernizr to test for the availability of HTML 5 features. Doing so was quite easy but as every test is always performed to add CSS classes to the <html> element there is a bit of overhead in using the default Modernizr JavaScript file. Fortunately...
  • Blog Post: Customizing the HTML5 checks Modernizr does

    In the previous blog post I demonstrated how to use Modernizr to test for the availability of HTML 5 features. Doing so was quite easy but as every test is always performed to add CSS classes to the <html> element there is a bit of overhead in using the default Modernizr JavaScript file. Fortunately...
  • Blog Post: HTML5 feature detection aka Modernizr

    Yesterday I blogged about using the new Server-Sent Events or the EventSource object to send messages from the server to the client. But what happens if I try to do this in a browser that doesn’t support Server-Sent Events? If I run the code from yesterday in Internet Explorer 9 I sill see the...
  • Blog Post: HTML 5 feature detection aka Modernizr

    Yesterday I blogged about using the new Server-Sent Events or the EventSource object to send messages from the server to the client. But what happens if I try to do this in a browser that doesn’t support Server-Sent Events? If I run the code from yesterday in Internet Explorer 9 I sill see the following...
  • Blog Post: HTML 5 - Server-Sent Events

    There are a lot of cool new features and one of these is Server-Sent Events . According to CanIUse.com Server-Sent Events are usable on almost half of the modern browsers. And as is often the case Internet Explorer is the big missing piece again. But fortunately there are some nice polyfills to take...
  • Blog Post: HTML5 - Server-Sent Events

    There are a lot of cool new features and one of these is Server-Sent Events . According to CanIUse.com Server-Sent Events are usable on almost half of the modern browsers. And as is often the case Internet Explorer is the big missing piece again. But fortunately there are some nice polyfills to take...
  • Blog Post: HTML5 and Geolocation

    One of the cool new features in HTML5 is Geolocation or the capability to determine where someone is. It turns out most modern browsers support the Geolocation API as you can see on CanIUse.com . Unfortunately Internet Explorer 8, the most popular version of IE at this moment, is the big exception. The...
Page 1 of 4 (80 items) 1234