0

Is RESTful WCF service a fully released version or its a BETA version, because when downloading the msi is 'WCF_REST_Starter_Kit_Preview_2.msi'. What does this Preview_2 means?

John Saunders
  • 160,644
  • 26
  • 247
  • 397
Miral
  • 5,968
  • 16
  • 57
  • 85

3 Answers3

1

The WCF REST Starter Kit Preview 2, is as the name suggests, just a preview and not a proper release (RTM/RTW). You may find that this related question helps answer your question:

Is the WCF REST Starter Kit dead in the water?

Community
  • 1
  • 1
Kev
  • 118,037
  • 53
  • 300
  • 385
1

REST capabilities are included and supported in the WCF that is part of the current .NET Framework, v3.5.

The REST Starter Kit is a bunch of add-on stuff to WCF for .NET 3.5. The starter kit is at preview 2. The starter kit is not necessary to do REST with WCF.

Cheeso
  • 189,189
  • 101
  • 473
  • 713
1

The WCF REST Starter Kit is intended as a vehicle for the team to get feedback from the community on new feature ideas around REST in WCF. In that sense the starter kit will probably always maintain its "preview" status and never ship as a standalone production release.

Having said that we are actively working on incorporating developers' favorite starter kit features in the .Net Framework - for example you can use the help page feature in the recently released .Net 4 Beta 1 release. As we get feedback on starter kit features we consider them for inclusion in the framework, which you can use in production.

Yavor Georgiev
  • 654
  • 3
  • 9
  • What is the final realization of the ideas that are gleamed from this feedback? What I'm confused about, is if I am wanting to get some of these cool features, do I wait for a RTW release at wcf.codeplex.com, or actually built into .NET framework, or somewhere else? – Greg Bacchus Feb 21 '11 at 03:57
  • Hey Greg and John - sorry for the long delay here. After a lot of transformation and learning, we finally shipped a supported REST stack: http://www.asp.net/web-api. One of the main asks for the Starter Kit was integration with ASP.NET, so after considering this feedback, we decided to integrate the REST support straight into ASP.NET. – Yavor Georgiev Oct 07 '12 at 02:56