Community Update 2014-01-29 – #aspnet #webapi goes 5.1, NDC Conference video, #ElasticSearch and some more

It’s been a while since the last Community Update. I would like to apologize. I rewrote the system that generate the content and lost some content in the process. A few lessons learned on that one.

So without further ado, let’s do this!

ASP.NET, WebAPI, AngularJS

ASP.NET AJAX What’s New (www.telerik.com)

ASP.NET web API 2 OData enhancements (blog.pluralsight.com)

hudo’s vibe - Two or more models in ASP.NET MVC View (www.hudosvibe.net)

Yet Another Podcast #119– ASP.NET & Angular | Jesse Liberty (jesseliberty.com)

Building ASP.Net Web API RESTful Service – Part 10 | Bit of Technology on WordPress.com (bitoftech.net)

What’s New in ASP.NET MVC 5.1 : The Official Microsoft ASP.NET Site (www.asp.net)

Conference & Videos

NDC Conferences’s Videos on Vimeo (vimeo.com)

LiveChat Starter Kit, SignalR style (channel9.msdn.com)

ElasticSearch & NEST (.NET Client)

Sebastian Bełczyk Indispensable tools when working with ElasticSearch | Sebastian Bełczyk (belczyk.com)

Getting started with Elasticsearch and .NET (www.slideshare.net)

This Week In Elasticsearch | Blog | Elasticsearch (www.elasticsearch.org)

Curation Tool – Creating unique GUID from a Uri

I’m currently building a tool that helps me curate information from the web. Right now, it’s restricted to Twitter however, more will come.

One of the many problems I’ve faced is to avoid duplicate URLs. The main problem remains that URLs change and they sometime contains junk.

I’ve not resolved any possible scenarios but I would like to show you a code snippet of what I have so far.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
public static class UrlHelper
{
public static string GenerateId(Uri url)
{

var hashingAlgorithm = MD5.Create();
var computedHash = hashingAlgorithm.ComputeHash(Encoding.UTF8.GetBytes(url.ToString()));
return BitConverter.ToString(computedHash).Replace("-", "").ToLowerInvariant();
}

public static Uri FilterQueryString(Uri url)
{

try
{
var builder = new UriBuilder(url);

var parameters = ExtractParameters(builder.Query);
var queryString = CreateQueryString(parameters);
builder.Query = queryString;

return builder.Uri;
}
catch
{
return null;
}
}

private static string CreateQueryString(IEnumerable<QueryStringParameter> parameters)
{

var aggregate = parameters
.OrderBy(t => t.Name)
.Where(t => !t.Name.Contains("utm_"))
.Select(t => string.Format("{0}={1}", t.Name, t.Value))
.Aggregate(string.Empty, (current, next) => current + "&" + next);
return aggregate;
}

private static IEnumerable<QueryStringParameter> ExtractParameters(string query)
{
string withoutQuestionMark = query;
if (withoutQuestionMark.IndexOf("?", StringComparison.Ordinal) == 0)
withoutQuestionMark = withoutQuestionMark.Remove(0, 1);
if (!string.IsNullOrWhiteSpace(withoutQuestionMark))
{
string[] nameValues = withoutQuestionMark.Split('&');
foreach (var nameValue in nameValues)
{
var pairSplitted = nameValue.Split('=');
if (pairSplitted.Length == 2)
yield return new QueryStringParameter(pairSplitted[0], pairSplitted[1]);
}
}
}
}

So what does this code do? It exposes 2 methods. One for filtering and the other one to generate a string id that will look very similar to a GUID. The filter will reorganize the query string by alphabetical order and remove any “utm_*” from the query string. Those parameters are normally used in Google Analytics Campaigns and will only add noise to our data. They can safely be stripped out.

As for generating the ID, I just generate an MD5 hash which I convert into hexadecimal without separators.

One GUID to go you say? You got it.

Community Update 2014/01/13 – #aspnet, #glimpse and some #cqrs with #nservicebus

Hey everyone. Hoped you all had some nice Christmas vacation. The return of the community update has lagged a bit as I rewrote some part of the application that generate those links.

I will share my process on Github eventually. If you are in a hurry, you can always email me through http://maximerouiller.com

Community Update– #ASPNET edition

Well today is all about ASP.NET.

Not much to say really. We have security, testing and the throttling handler. Enjoy!

ASP.NET

ASP.NET Partial Trust does not guarantee application isolation (support.microsoft.com)

Mocking Entity Framework when Unit Testing ASP.NET Web API : The Official Microsoft ASP.NET Site (www.asp.net)

Writing tests for an ASP.NET Web API service (blogs.msdn.com)

Introducing ASP.NET Web API Throttling handler - Stefan’s Tech Notes - about life on internet, open source and .net programming (www.stefanprodan.eu)

New tutorial for migrating applications with membership and User Profile information from Universal Providers to ASP.NET Identity (blogs.msdn.com)

How to install ElasticSearch in a Windows environment

What is ElasticSearch?

ElasticSearch is a Java-based service that will allow you to stock data and query that data. If you know about Solr, the tool is in the same spirit but with a different management model. If you don’t, you might know Lucene or Lucene.NET. ElasticSearch is a server implementation of Lucene. Among the great feature of ElasticSearch is how it reaches high availability through a proper node scaling. Mostly, you won’t have to do anything by default. Everything will work straight out of the box.

For the full list of feature, I will redirect you to their website.

System requirements

Latest Java version

Installing Java

First, we’ll get Java out of the way. If you don’t have java installed on your machine, go to Ninite.com and select the runtime “Java” and proceed with the installation.

Once this is done, you have to set your JAVA_HOME which for whatever reason is never set after installing a JRE. If you need help on how to set your environment variable for your Java JRE, Stackoverflow is filled with such answers.

To ensure that it works, open a command prompt and type “java” and press enter. It should display the help prompt for the Java command line utility.

That’s it. Now we are ready to install ElasticSearch.

Installing ElasticSearch

First, we’ll start by going to ElasticSearch.org to download the latest release (0.90.8 as of this post). They release fairly often so you might want to keep yourself up to date regularly.

After downloading the ZIP file, you will see something like this:

es0908_zipContent

Inside thebin folder, you will have a file called elasticsearch.bat. Double click and you are done.

A command line will be opened and your instance will be available.

What do we have now?

First, if you hit http://localhost:9200/ with a browser, you will see a health status of your ElasticSearch instance with the version number, the name and more.

If you want to see everything that compose your ElasticSearch cluster (a cluster is defined by default even for one node), you can hit this url: http://localhost:9200/_status?pretty=true

ElasticSearch exposes a REST API that will allow you to do most action that you need on your cluster. See the full documentation for more info. 

However, if you are from the .NET world like me, you’ll want some abstraction over that tool so that you don’t have to deal with everything at a granular level.

Tools

For .NET, I recommend NEST (documentation). It provide a great abstraction with .NET 4+ support for controlling an ElasticSearch cluster.

If you want to get down to the metal, I recommend the Sense Extension for Chrome. It comes with intelisense and will allow you to do most of your maintenance through it.

Conclusion

So I just wanted to get this out of the window. ElasticSearch is very easy to install and get started. I’m currently working on a curation tool that allows me to store lots of data from Twitter and other sources. This is what is bringing you the daily Community Updates. This tool is currently running on my station but is heavily using ElasticSearch to sort through the content at blazing speed.

Eventually, I want to get that code out in the open. However, I know that people will question on how to get ElasticSearch ready hence why I created that post.

Community Update (2013/12/16) – Ajax Control toolkit update, #WebAPI tutorial and #cors in WebAPI 2

Well Christmas is coming and it shows. Not a lot of people are actually posting new content.

First there is the December release of Ajax Control Toolkit that you should checkout if you are using WebForms. Then, there is Part 10 of the tutorial. You should checkout the rest of the tutorial which can be found within the post. Finally, an MSDN article about CORS support in WebAPI 2.

Enjoy!

Tools

Ajax Control Toolkit December 2013 Release (feedly.com)

WebAPI

Building ASP.Net Web API RESTful Service – Part 10 | Bit of Technology on WordPress.com (bitoftech.net)

ASP.NET Web API - CORS Support in ASP.NET Web API 2 (msdn.microsoft.com)

ReSharper 8.1 is out. If you have an 8.x licence upgrade now!

NOTE: As an MVP, I have a licence for ReSharper that is provided for free by JetBrains. However, I am not paid by JetBrains for this post. I just love the tool and want to keep you guys updated.

First of all, here is the download link. With that out of the way, here’s what’s new.

  • Support for TypeScript. So if you were still wondering if it was just a fad or not, well… 3rd party provider started supporting it.
  • Integrated experience with Peek Definition and Enhanced scrollbar (aka the Christmas Tree)
  • More C# inspections. This means that ReSharper will find more issue than before and more opportunities to clean up your code.
  • Improvements to JavaScript support. ReSharper is always a bit less feature-full with JavaScript but they are still working on it.
  • Improved the XAML tooling. For those of you that are into XAML and are following my blog, well you just got served.

Resource

For more details, read the JetBrains blog post:

Community Update (2013/12/13) – Securing #webapi, Datepicker with #ASPNET and #jQuery and some more #webapi

This week is purely ASP.NET. I’ll keep this short and sweet but everything down here is worth taking your time for a slow read on the train/metro/bus back home.

Then I suggest that you take it easy for the weekend. Christmas is coming and you’ll all need to relax before partying. Smile

Enjoy!

ASP.NET

Making your ASP.NET Web API’s secure | John V. Petersen (codebetter.com)

Assign datepicker to runtime textboxes in ASP.NET using jQuery | Ashish’s Blog (www.ashishblog.com)

Introducing ASP.NET Web API Throttling handler - Stefan’s Tech Notes - about life on internet, open source and .net programming (www.stefanprodan.eu)

Accepting Raw Request Body Content with ASP.NET Web API - Rick Strahl’s Web Log (weblog.west-wind.com)

Community Update (2013/12/12) – Static files in #OWIN, #Fsharp templates and more as well as One #ASPNET

Very interesting content today. Howard Dierking released a RC1 of the OWIN static file middleware. If you are using a previous package, you want to upgrade now (and don’t forget the pre-release flag).

Ever wanted to log your JavaScript output to the database for further inspection? Maybe you have a Single Page Application and you need error on the JavaScript side to be logged to the server? JSNLOG is there for you! Check it out!

If you are using F#, new templates are now available for download. Don’t miss out on the new templates for WebAPI, MSTest as well as Nancy.

Finally, if you are still missing out on the new vision of ASP.NET (a.k.a. One ASP.NET), you will want to read the article dedicated to that. A must read!

Finally, Imran Baloch deliver us a barebone implementation of the new Identity component for ASP.NET. I should have to say it again but… it’s also a must read.

On that, enjoy!

OWIN

NuGet Gallery | Microsoft.Owin.StaticFiles 2.1.0-rc1 (www.nuget.org)

Tools and templates

Better JavaScript Logging - JSNLog (jsnlog.com)

New Visual F# Templates for ASP.NET, Web API, MSTest and Nancy Now Available (blogs.msdn.com)

ASP.NET

One ASP.NET: Unified ASP.NET application projects in VS 2013 (www.campusmvp.net)

A simple implementation of Microsoft.AspNet.Identity - Imran Baloch’s Blog (weblogs.asp.net)

Community Update (2013/12/11) – Writing #OWIN middleware and #ASPNET Release Candidate as well as an important security update from #msdn

Not too much content but some very important one. Let’s start with the fun stuff first.

We have a nice tutorial on how to write OWIN middleware by OdeToCode. Then we have the OWIN ASP.NET Identity package for Entity Framework.  Also in the news, the official blog post from MSDN about the latest Release Candidate of ASP.NET MVC 5.1, Web API 2.1 and Web Pages 3.1.

An oldie but a goodie, how to change where the ResourceManager get its strings. The last article got you covered.

Finally the most most important one is the ASP.NET December 2013 security updates. This is a MUST READ. One very important note that I will copy/paste is that EnableViewStateMac is going to go deprecated in future version of the .NET Framework. If you are relying on it for your websites to work, you must take time to fix it as soon as possible. No time to snooze on this one.

Important note:
The next version of ASP.NET will forbid setting EnableViewStateMac=false. Applications which set EnableViewStateMac=false may no longer function properly once this update is pushed out. Web developers must take this time to ensure that their applications do not set this switch to an insecure value.

OWIN

Writing OWIN Middleware (feedly.com)

NuGet Gallery | Microsoft ASP.NET Identity Owin 1.0.0 (www.nuget.org)

ASP.NET

ASP.NET December 2013 Security Updates (blogs.msdn.com)

Release Candidates for ASP.NET MVC 5.1, Web API 2.1 and Web Page 3.1. (blogs.msdn.com)

ASP.NET MVC 5 Internationalization · How to Store Strings in a Database or Xml (feedly.com)

Community Update (2013/12/10) on ASP.NET, OWIN, Single Page Application and Entity Framework

A lot of new content today. Web API 2.1, MVC 5.1 and Web Pages 3.1 goes in Release Candidate. Don’t miss a nice article on how to properly upgrade a project from MVC 4/Web API to MVC 5/Web API 2. Ever needed to build a custom Identity database? Lookup the link to Codeplex for a SQL Project that does just that. Rick Strahl show off the Helios performance test while John Papa dispel some myths about single page applications.

Finally, don’t miss on Entity Framework 6 which has been nicknamed “The Ninja Edition”.

ASP.NET – Updates and releases

ASP.NET December 2013 Security Updates (blogs.msdn.com)

ASP.NET Web API 2.1 RC is out - what’s new? - StrathWeb (www.strathweb.com)

Release Candidates for ASP.NET MVC 5.1, Web API 2.1 and Web Page 3.1. (blogs.msdn.com)

How to Upgrade an ASP.NET MVC 4 and Web API Project to ASP.NET MVC 5 and Web API 2 : The Official Microsoft ASP.NET Site (www.asp.net)

ASP.NET Identity Database - Home (identity.codeplex.com)

OWIN

Re-examining ASP.NET and Helios Performance Tests - Rick Strahl’s Web Log (weblog.west-wind.com)

Single Page Applications

SPA and the Single Page Myth (www.johnpapa.net)

Entity Framework

Entity Framework - Entity Framework 6: The Ninja Edition (msdn.microsoft.com)

OWIN – Introduction to hosts and pipelines

Introduction

OWIN is a new way to build application. With or without the normal IIS server. To retrieve the original description from OWIN.org:

OWIN defines a standard interface between .NET web servers and web applications. The goal of the OWIN interface is to decouple server and application, encourage the development of simple modules for .NET web development, and, by being an open standard, stimulate the open source ecosystem of .NET web development tools.

Four layers are present. The Application layer, the Application Framework layer, the Server layer and finally the Host layer.

The Application layer is where your code will end-up. The Application Framework is where you will find something like WebAPI and ASP.NET. The Server Layer will represent what is currently handling resource for your server (think connections pool, thread and what not). As for the Host, it’s the technology that will be hosting the whole stack. In this case we have 3 choice. Either it’s IIS, Katana.exe (Microsoft implementation of OWIN) or simply a self-hosted console application that listen on a web port.

Here’s what it looks like in a nice diagram:

image

Simply, why should I care?

What is great with OWIN is that you only import what you need. Do you need to serve static files (images, javascript)? Yes? Import the module that handle static files. Do you need Facebook OAuth? Import that too. You have to look at all the features that you application might use and see this as a buffet. You will need many of them but you don’t need everything. What about Google OAuth? Don’t need it? Perfect! It’s not included by default.

The most default application that you can do will literally just listen to a port and return string content without a response type. Here’s what it looks like:

Taken from ASP.NET: http://www.asp.net/aspnet/overview/owin-and-katana/getting-started-with-owin-and-katana

Source

This application won’t support login, WebAPI, cookies or even directory browsing. It only returns “Hello, world.” for each and every request. This will lead to very low-memory processes and a highly specialized task of returning “Hello, world.”. However, since we are not writing so simple app, we will need to add support for Web API, routing and maybe even authentication. How do we do this? OWIN defines a way that to specify all this. It’s called the Middleware pipeline.

The OWIN Middleware Pipeline

So let’s take the base application. We created a truly empty web application with Visual Studio 2013 and we added the OWIN startup class as described above. How do we add WebAPI in here?

First, we add the package Microsoft.AspNet.WebApi.Owin to our web project. Then we are going to add before what we already have the proper configuration to use WebAPI 2.

1
2
3
var routes = new HttpRouteCollection();
routes.MapHttpRoute("Default", "{controller}/{id}", new {id = RouteParameter.Optional});
app.UseWebApi(new HttpConfiguration(routes));

With this, we the equivalent of a default WebAPI route. Let’s add a default controller to our system by using “Add New Scaffolded Item” and Empty Web API 2 Controller.

Let’s make a default method to return some random data:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
public class OwinController : ApiController
{
public OwinItem[] GetAll()
{
return new[]
{
new OwinItem{Id = 1, Name = "First of them"},
new OwinItem{Id = 2, Name = "Another one of them"},
};
}
}

public class OwinItem
{
public int Id { get; set; }
public string Name { get; set; }
}

Hitting our URL from the default URL will return the default Hello World. However, hitting your WebAPI with /owin instead will return our fake data and will answer with XML/JSON depending on your HTTP Headers.

Isn’t that cool? We only imported what we needed for that project and nothing more. If you are looking at the Nuget feed for “owin” (like here) you will see that a lot of packages has been created. They are all useable by the same patterns. You can basically build your application up from scratch by buying only what you need.

Pipeline Order

What happens if we invert the UseWebAPI and the Run(…) command? If you try it, you’ll see that nothing else register to WebAPI anymore. The Run element will actually catch everything else that is not handled by a middleware (WebAPI). The Run at the end might be useful if you want to catch any potential request that goes through the .NET pipeline and that isn’t catched.

OWIN Hosts

Many hosts are available. As of right now, you should still use IIS. However, Katana.exe can be used to host your website or you can simply self-host it within a Console application. As more hosts are being supported, we’ll see greater support for Mono in those scenario.

Why should I use OWIN?

Well first there is a lot of cleaning that has been done around which DLLs are actually needed to run a web project. IIS is slowly being geared toward greater support for OWIN with the IIS Host instead of the SystemWeb host. As things are moving forward, you will see more and more OWIN development coming in to Visual Studio and your everyday project. OWIN will allow us to build great web software with only the things that we need.

No more will we have to get stuffed with useless DLLs and be stuck by what Microsoft provides out of the box. As things are moving forward, we’ll be able to easily swap parts of the framework so that we can respond quickly to ever changing web. OWIN by itself isn’t meeting all of its promises yet as for what is currently implemented. But as Microsoft and the community moves forward and continue to build great middleware for OWIN, we’ll get access to even more features and be even more nimble than we could ever be before.

I’ll leave you with a list of links that I think you should read.

http://owin.org/

http://www.asp.net/vnext/overview/owin-and-katana

http://www.asp.net/aspnet/overview/owin-and-katana/getting-started-with-owin-and-katana

http://msdn.microsoft.com/en-us/magazine/dn451439.aspx

Community Update (2013/12/09) – Medium Trust is dead, OAuth and Two Factor Auth in MVC and JSON to XML conversion

Here is what we have for the community. First, a great warning from Levi Broderick about how medium trust is dead. This link will bring you to a KB from Microsoft that will give you all the details you need to know about that.

Then we have a nice tutorial from www.asp.net that will show us how to use external authentication services. Sam Jenkins show how to implement Two Factor Authentication in ASP.NET MVC.

Finally, did you know that JSON.NET allows you to convert XML from and to JSON? Check it out.

ASP.NET

ASP.NET Partial Trust does not guarantee application isolation (support.microsoft.com)

Authentication

External Authentication Services (C#) : The Official Microsoft ASP.NET Site (www.asp.net)

Two Factor Authentication in ASP.NET MVC | Sam Jenkins’ Blog (satalketo.com)

JSON.NET

How to convert JSON to XML and vice versa in C# | dotnet thoughts (www.dotnetthoughts.net))

Community Update (2013/12/06) – Profiler or debugger for slow pages, WebAPI 2 output caching and secure OWIN WebAPI

Not a lot of content as for every Friday, but we got a few that is very interesting.

Profiler or debugger, output caching or per-controller configuration… it’s all bellow. Do not miss the last one on securing ASP.NET Web API with Windows Azure Active Directory with OWIN.

I wish you all a good weekend.

.NET

Profiler vs. Debugger? Best way to debug slow ASP.NET page loads (blog.leansentry.com)

Web API

Output Caching in ASP.NET Web API 2 - StrathWeb (www.strathweb.com)

Per-controller configuration in WebAPI (blogs.msdn.com)

Azure

ASP.NET Web API - Secure ASP.NET Web API with Windows Azure AD and Microsoft OWIN Components (msdn.microsoft.com)

Community Update (2013/12/05) – What is OWIN, Azure Caching in MVC, WebAPI Deep Tutorial and some tools

So what do we have here? A very clear explanation of what is OWIN by Robert Muehsig (MVP). It’s a must read to finally know what OWIN is all about. Then there’s some way to optimize your MVC with Azure caching and compiled views and finally, we have an amazing multi-part tutorial on WebAPI. Don’t forget to scroll at the bottom of the article to see the other parts.

As for the tooling, we have Superscribe which is a routing framework that is OWIN-compatible and a small JavaScript tool that allow you to do client-side cropping (with CSS) with the correct data to do a proper server-side cropping. Perfect for cropping user profile pictures.

Happy reading Smile

OWIN

OWIN – what is it about and why is it so cool? | Code-Inside Blog International (ow.ly)

Azure/MVC

Instant Azure Caching with MVC (ift.tt)

Get Compile-Time View Errors in ASP.NET MVC (bit.ly)

WebAPI

Detailed Tutorial for Building ASP.Net Web API RESTful Service | Bit of Technology on WordPress.com (ow.ly)

Tools

Superscribe (superscribe.org)

DeepLiquid » Jcrop Image Cropping Demos (deepliquid.com)

Community Update (2013/12/03) – OWIN IIS Host, WebAPI and CORS

So after a long weekend a few skipped days to relax, I’m coming back with  more links!

First, if you are following OWIN, a new release of the OWIN IIS Host has been released. Still in pre-alpha but hey, it’s there! Then there’s two excellent articles on Cross-Origin Resource Sharing (CORS) to read that I would suggest personally and finally, 2 more post about Web API.

That’s for today. I’ll find you some more tomorrow.

OWIN

NuGet Gallery | Microsoft.Owin.Host.IIS 0.1.1-pre (www.nuget.org)

CORS (Cross-Origin Resource Sharing)

MSDN article on CORS in Web API 2 | brockallen on WordPress.com (wp.me)

ASP.NET Web API v2 Cross-origin resource sharing made easy - Stefan’s Tech Notes - about life on internet, open source and .net programming (vil.rs)

WebAPI

Re-discovering Microsoft Web API - Pavel Volgarev (volgarev.me)

Web API: Mixing Traditional & Verb-Based Routing | Applied Information Sciences Blog (ow.ly)

Community Update November 28th 2013 – Custom OAuth, WebAPI, and more

So I’ve skipped a few days to see what would come up. It was well worth waiting. First, Dominick Baier from LeastPrivilege.com did two more parts for his Web API Identity dissecting. Then Jerrie Pelser from BeARockStar.com wrote a Yahoo, LinkedIn and GitHub OAuth provider for OWIN. If you needed those, they are right bellow up for grabs!

Then Brock Allen did an awesome post on OWIN Cookie Authentication. A must read!

Finally, I included a project for F# OWIN support as well as a nice comparison of advantages/disadvantages of each web technology we have in the .NET world (made by Microsoft). As a cherry on top, I included a link by Imran Baloch (ASP.NET MVP) on how to do page instrumentation in .NET 4.5.

Enjoy!

OAuth providers

Web API & Identity

OWIN

Misc

Community Update on ASP.NET for the Weekend of November 23rd 2013

So during the weekend, there was a bit of everything. There is a nice introduction on how to debug OWIN apps as well as playing with the new OWIN on IIS layer that is demoed by Rick Strahl. As for the new ASP.NET Identity mechanism, Olav Nybø goes over the new features and explain the structure and logic behind the new system while Abhimanyu Kumar Vatsa explains how to customize it to your needs.

If you are more interested in WebAPI, there’s a nice tutorial on how to build proper action filters for async methods as well a dissection of WebAPI Individual Accounts Template.

I’m hoping you’ll be enjoying this reading list for today.

Cheers!

OWIN

Debugging OWIN app or framework (blogs.msdn.com)

Checking out the Helios IIS Owin Web Server Host - Rick Strahl’s Web Log (www.west-wind.com)

ASP.NET new Identity mechanism

ASP.NET Identity - Novanet (www.novanet.no)

Customize User’s Profile in ASP.NET Identity System (zite.to)

WebAPI

Asynchronous action filters in ASP.NET Web API - StrathWeb (ift.tt)

Dissecting the Web API Individual Accounts Template–Part 1: Overview | www.leastprivilege.com on WordPress.com (wp.me)

Community Update for November 20th 2013

Among the different things that grabbed the community interested today were pretty much all about ASP.NET.

We have two video links (Thanks Channel 9!) that shows the integration of Bootstrap in the latest release of MVC as well as the authentication using the new Identity system. If you are a fan of WebAPI, don’t miss out on the batch support in WebAPI 2 as well as how to unit test a controller.

I hope you enjoy this small bundle of links for today!

ASP.NET & Web API News

Using Open-Source? It’s payback time! … if you want.

Most of the developers I know are actually very passionate about what they do and choose the best tool for the job. Sometimes this means that you use Microsoft tools and sometimes, you use open source.

If you are interested in giving back to the community, a website has been established to list all the projects that has simple bugs and/or features that are not assigned to anyone and are… up for grabs.

From Glimpse to Octokit.NET wihout forgetting NuGet, you can find all those list and more right here.

Enjoy!