Integrating Integrators – BizTalk, Windows Azure, Windows Workflow, and Beyond
Join
Sign in
Search Options
Search Everything
Search AppFabric
Home
AppFabric
BizTalk Server
Windows Azure
Windows Workflow
Jobs (Hire A Guru)
More ...
Home
»
AppFabric
»
AppFabric Community Blogs via Syndication
»
All Tags
»
rest
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.
Get this RSS feed
Home
Blog
Files
Wiki
Archives
Archives
May 2013
(7)
April 2013
(8)
March 2013
(10)
February 2013
(5)
January 2013
(9)
December 2012
(7)
November 2012
(6)
October 2012
(6)
September 2012
(5)
August 2012
(5)
July 2012
(14)
June 2012
(14)
May 2012
(10)
April 2012
(15)
March 2012
(10)
February 2012
(17)
January 2012
(16)
December 2011
(22)
November 2011
(28)
October 2011
(21)
September 2011
(14)
August 2011
(27)
July 2011
(25)
June 2011
(33)
May 2011
(57)
April 2011
(33)
March 2011
(33)
February 2011
(33)
January 2011
(47)
December 2010
(22)
November 2010
(21)
October 2010
(5)
September 2010
(4)
August 2010
(2)
June 2010
(10)
May 2010
(7)
April 2010
(3)
March 2010
(4)
February 2010
(1)
January 2010
(4)
December 2009
(1)
November 2009
(2)
Tags
.NET
ASP.NET
ASP.NET MVC
Azure
Best Practices
Blog
CORS
DevCenter
dotnetmag
Featured Article
Futures
HTML5
jQuery
Knockout
NuGet
SignalR
VS2010
WCF
WCF4
WebAPI
webcast
WF4
WIF
Windows Azure
Windows Azure Queue
Tagged Content List
Blog Post:
Unit testing a ASP.NET WebAPI controller
Syndicated AppFabric Author
One of he goals of the ASP.NET WebAPI is to make REST style API controllers more testable than more traditional WCF services where in the past. For the most part that is true but there are cases where an ApiController depends on the actual incoming request and its data and things can become a bit more...
on
Sun, May 12 2013
Blog Post:
Excellent rest met de WebAPI #TechDaysNL
Syndicated AppFabric Author
De PowerPoint slides Excellent rest met de web api from Maurice Beijer En hier staat de bron code. Enjoy! Blog Post by: Maurice
on
Mon, Mar 11 2013
Blog Post:
Using SignalR for real time data updates
Syndicated AppFabric Author
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...
on
Wed, Jul 25 2012
Blog Post:
DotNed podcast: Matt Milner over REST, de ASP.NET Web API en meer
Syndicated AppFabric Author
In deze podcast spreekt Maurice de Beijer met Matt Milner over zijn TechDays presentaties. Ze hebben het onder meer over REST service en waarom je die wil gebruiken ipv SOAP services. Daarnaast komt Windows Workflow Foundation aan bod en wat daar allemaal nieuw is. Verder spreken ze over Windows Azure...
on
Fri, Jun 15 2012
Blog Post:
Slides from my security and REST services session at Engineering World 2012
Syndicated AppFabric Author
Here are the slides from my securing REST services session I did at Engineering World 2012 . Beveiliging en REST services View more PowerPoint from Maurice Beijer Enjoy! TheProblemSolver DotNetEvents Blog Post by: Maurice
on
Wed, Apr 4 2012
Blog Post:
Demos and slides from my HTML5 and REST presentation in Belgium last week
Syndicated AppFabric Author
HTML5 & rest services View more PowerPoint from Maurice Beijer You can download the ASP.NET WebAPI demo here and the SignalR demo here . Enjoy! TheProblemSolver DotNetEvents Blog Post by: Maurice
on
Tue, Apr 3 2012
Blog Post:
Query composition with the ASP.NET Web API
Syndicated AppFabric Author
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...
on
Wed, Mar 21 2012
Blog Post:
Client side support with the ASP.NET Web API
Syndicated AppFabric Author
With REST there is not a lot required on the client as far as sending requests goes. As long as you can send HTTP GET requests you are good to go and there are very few programming stacks that don’t allow for some form of doing that. Of course just doing an HTTP GET is going to give you some data back...
on
Tue, Mar 13 2012
Blog Post:
Updating data with the ASP.NET Web API
Syndicated AppFabric Author
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...
on
Mon, Mar 12 2012
Blog Post:
Getting started with the ASP.NET Web API
Syndicated AppFabric Author
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...
on
Fri, Mar 9 2012
Blog Post:
HTML5 & REST TechDays 2112 material
Syndicated AppFabric Author
Several people asked about getting the slides and samples from my HTML5 & REST talk at the TechDays 2012 conference in the Netherlands. You can download the slides and the sample if you like. Enjoy! TheProblemSolver DotNetEvents Blog Post by: Maurice
on
Mon, Feb 20 2012
Blog Post:
How to data bind to collections using Knockout.js
Syndicated AppFabric Author
In the previous two blog posts about getting started with Knockout.js and controlling updates using Knockout.js I showed to to get started with the awesome Knockout.js library. In this post I am going to show how easy it is to load a collection of items from a REST service and data bind to the complete...
on
Thu, Feb 16 2012
Blog Post:
Controlling when the value is updated with Knockout.js
Syndicated AppFabric Author
In the previous blog post about Knockout.js I showed why and how to get started with Knockout.js. And I explained that the reason I really like Knockout.js is that it is a very familiar way of working with its MVVM style. I created a small demo where we could update the first and last name of a person...
on
Wed, Feb 8 2012
Blog Post:
How to get started with Knockout.js
Syndicated AppFabric Author
Once you get into doing more client side JavaScript code with business applications and REST services you are going to run into the question of how to construct the client side HTML required to show the data to the users. Using jQuery Assuming most people are going to be using jQuery on the client...
on
Mon, Feb 6 2012
Blog Post:
Getting Started with WCF and Rest material
Syndicated AppFabric Author
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...
on
Fri, Jan 20 2012
Blog Post:
Wat doe ik met HTML5 op de Microsoft TechDays 2012?
Syndicated AppFabric Author
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 ...
on
Thu, Jan 12 2012
Blog Post:
HTML5 and Cross-Origin Resource Sharing call
Syndicated AppFabric Author
Services are becoming more important with richer HTML5 style applications. But by default the browser will let you call into a service on the originating domain but not another one. And that means you have to include all your services one the same domain, not very practical. And worse if you want to...
on
Thu, Nov 17 2011
Blog Post:
Building rich HTML 5 clients using REST services recording
Syndicated AppFabric Author
For those who missed the online event about building JavaScript and HTML 5 client for a REST service build using the new WCF Web API the recordings are up. You can download the hi res recording here or download one of the other formats from the main page here . And remember there a bunch of other useful...
on
Thu, Nov 3 2011
Blog Post:
Building rich HTML5 clients using REST services recording
Syndicated AppFabric Author
For those who missed the online event about building JavaScript and HTML5 client for a REST service build using the new WCF Web API the recordings are up. You can download the hi res recording here or download one of the other formats from the main page here . And remember there a bunch of other useful...
on
Thu, Nov 3 2011
Blog Post:
Getting Started with WCF and Rest Services recording
Syndicated AppFabric Author
The recording for the webinar I did on October 4th about getting started with REST services and the WCF Web API is available on the DevelopMentor website. You can watch the video stream from here or download the file, even in mobile format, from here . And besides this screencast there are a lot of other...
on
Thu, Oct 27 2011
Blog Post:
Building rich HTML 5 clients using REST services
Syndicated AppFabric Author
You can download the slide from my session on Building rich HTML 5 clients using REST services here and the sample application using the WCF Web API here . The slides are also available on SlideShare . Enjoy! www.TheProblemSolver.nl www.dotnetevents.nl Blog Post by: Maurice
on
Wed, Oct 26 2011
Blog Post:
Building rich HTML5 clients using REST services
Syndicated AppFabric Author
You can download the slide from my session on Building rich HTM 5 clients using REST services here and the sample application using the WCF Web API here . The slides are also available on SlideShare . Building rich HTML 5 clients using REST services View more presentations from Maurice Beijer Enjoy!...
on
Wed, Oct 26 2011
Blog Post:
Getting started with REST services and the WCF Web API
Syndicated AppFabric Author
You can download the demos and slides from the “Getting started with REST services and the WCF Web API” webinar. Slides Demos Or watch the slide on SlideShare here . Don’t forget about part 2 on “Building rich HTML 5 clients using REST services” on Tuesday, October 25, 2011 2:00 PM - 3...
on
Tue, Oct 4 2011
Blog Post:
Using HTTP methods in a REST service
Syndicated AppFabric Author
In a normal language like English we use verbs all the time to describe what we are doing. So I guess the designers of the HTTP specs must have thought why not do the same with the HTTP protocol. And that makes perfect sense. In the HTTP spec these are called methods but commonly these are also names...
on
Thu, Aug 25 2011
Blog Post:
Using HTTP status codes in a REST service
Syndicated AppFabric Author
When we build services, or write any code for that matter, error can occur and we have to cater for those. With SOAP service we gibe a calling application information about the error by returning a SOAP fault. This SOAP fault is just another piece of XML informing the calling application about whatever...
on
Wed, Jul 20 2011
Page 1 of 2 (36 items)
1
2